mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
add shell.nix
I wanted to have the latest poetry to work on the tests
This commit is contained in:
parent
df82c7d72c
commit
a051e38eef
1 changed files with 10 additions and 0 deletions
10
shell.nix
Normal file
10
shell.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
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
|
||||
];
|
||||
}
|
Loading…
Add table
Reference in a new issue