mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
17 lines
385 B
Nix
17 lines
385 B
Nix
{ buildPythonPackage, fetchPypi, pytestCheckHook
|
|
, atpublic, psutil, pytestcov, sybil
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flufl.lock";
|
|
version = "5.0.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1bnapkg99r6mixn3kh314bqcfk8q54y0cvhjpj87j7dhjpsakfpz";
|
|
};
|
|
|
|
propagatedBuildInputs = [ atpublic psutil ];
|
|
checkInputs = [ pytestCheckHook pytestcov sybil ];
|
|
}
|