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-03-29 21:34:07 +03:00
rev = "140636c924fa9d33f31a1eda14b752cf270adb54";
sha256 = "sha256-3NoKm/oDYd8eQq1m4kQkQHEaeYFuaj3l6Gic8Hv7KEQ=";
2023-03-15 00:10:13 +03:00
};
in
poetry2nix.mkPoetryApplication {
2023-03-29 21:34:07 +03:00
version = "2023-03-29";
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
}