poetry2nix/tests/fetched-projectdir/default.nix

12 lines
318 B
Nix
Raw Normal View History

2022-01-11 10:12:33 +13:00
{ lib, poetry2nix, python39, fetchFromGitHub }:
poetry2nix.mkPoetryApplication {
projectDir = fetchFromGitHub {
2022-09-02 13:32:04 +12:00
owner = "nix-community";
repo = "pynixutil";
2022-10-08 00:13:34 +13:00
rev = "d27d778dc9109227b927ab88fedb2e3c2d6a7265";
sha256 = "sha256-+Ey384Nz6hvDZAA5OYO0EAGkGjY9Kz4134CRIMjEeyg=";
2022-01-11 10:12:33 +13:00
};
python = python39;
}