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-31 00:00:05 +03:00
rev = "1cbea7a6b138934b1be6c0a81d6865882954acc0";
sha256 = "sha256-Jg/wjorb5OXtv0hnrDVsPi5MxZUyK7mDiMlOQX7brq4=";
2023-03-15 00:10:13 +03:00
};
in
poetry2nix.mkPoetryApplication {
2023-03-31 00:00:05 +03:00
version = "2023-03-30";
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
}