poetry2nix/shell.nix
zimbatm a051e38eef
add shell.nix
I wanted to have the latest poetry to work on the tests
2019-12-11 13:19:30 +01:00

10 lines
292 B
Nix

let
pkgs = import (fetchTarball { url = "channel:nixpkgs-unstable"; }) {};
poetry2nix = import ./. { inherit pkgs; inherit poetry; };
poetry = pkgs.callPackage ./pkgs/poetry { python = pkgs.python3; inherit poetry2nix; };
in
pkgs.mkShell {
buildInputs = [
poetry
];
}