fawltydeps: rollback to prev version

This commit is contained in:
Dmitriy Pleshevskiy 2023-03-16 12:48:13 +03:00
parent 4adabd8d4f
commit c856ff0959
Signed by: pleshevskiy
GPG Key ID: 79C4487B44403985
1 changed files with 4 additions and 5 deletions

View File

@ -1,8 +1,7 @@
{ lib
, poetry2nix
, fetchFromGitHub
, python39
, python39Packages
, python310
}:
let
@ -36,13 +35,13 @@ let
src = fetchFromGitHub {
owner = "tweag";
repo = "FawltyDeps";
rev = "f8b156756b1de47c578935c4d6f6a7a8f2975c63";
sha256 = "sha256-3oQX0oX1+jZAC+vTRd7dUGNfioc6ADFmF+GSbvVyYsQ=";
rev = "0201e74a158c5774db9150e1e70f01e76bad34e7";
sha256 = "sha256-kSAy6IOS+G+e7hG4ZseglhOsnJ7Tg87MaMRCWUoSJdA=";
};
in
poetry2nix.mkPoetryApplication {
version = "2023-03-16";
python = python39;
python = python310;
projectDir = "${src}";
overrides = poetryOverrides;
}