mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
11 lines
318 B
Nix
11 lines
318 B
Nix
{ lib, poetry2nix, python39, fetchFromGitHub }:
|
|
|
|
poetry2nix.mkPoetryApplication {
|
|
projectDir = fetchFromGitHub {
|
|
owner = "nix-community";
|
|
repo = "pynixutil";
|
|
rev = "d27d778dc9109227b927ab88fedb2e3c2d6a7265";
|
|
sha256 = "sha256-+Ey384Nz6hvDZAA5OYO0EAGkGjY9Kz4134CRIMjEeyg=";
|
|
};
|
|
python = python39;
|
|
}
|