tools/pkgs/fawltydeps/default.nix

19 lines
356 B
Nix
Raw Normal View History

2023-03-29 21:34:07 +03:00
{ poetry2nix
2023-03-15 00:10:13 +03:00
, fetchFromGitHub
2023-03-16 12:48:13 +03:00
, python310
2023-03-15 00:10:13 +03:00
}:
let
src = fetchFromGitHub {
owner = "tweag";
repo = "FawltyDeps";
2023-06-14 18:55:38 +03:00
rev = "2a37e0b00c5a741d6d6bd6e39936d97831fe6202";
sha256 = "sha256-/TrA32C6LupAHU453/EFQDdM5Gpor0i+NlL3oGBbaog=";
2023-03-15 00:10:13 +03:00
};
in
poetry2nix.mkPoetryApplication {
2023-06-14 18:55:38 +03:00
version = "2023-05-11";
2023-03-16 12:48:13 +03:00
python = python310;
2023-03-29 21:34:07 +03:00
projectDir = src;
2023-03-15 00:10:13 +03:00
}