mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00
11 lines
292 B
Nix
11 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
|
||
|
];
|
||
|
}
|