nixpkgs/pkgs/development/python-modules/flufl/lock.nix

17 lines
385 B
Nix
Raw Normal View History

2021-04-17 00:58:02 +00:00
{ buildPythonPackage, fetchPypi, pytestCheckHook
, atpublic, psutil, pytestcov, sybil
}:
buildPythonPackage rec {
pname = "flufl.lock";
2021-04-17 00:58:02 +00:00
version = "5.0.5";
src = fetchPypi {
inherit pname version;
2021-04-17 00:58:02 +00:00
sha256 = "1bnapkg99r6mixn3kh314bqcfk8q54y0cvhjpj87j7dhjpsakfpz";
};
2021-04-17 00:58:02 +00:00
propagatedBuildInputs = [ atpublic psutil ];
checkInputs = [ pytestCheckHook pytestcov sybil ];
}