mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 17:34:04 +00:00
0215034f25
when they already rely on SRI hashes.
27 lines
533 B
Nix
27 lines
533 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, mock
|
|
, zope_testing
|
|
, lib
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zc.lockfile";
|
|
version = "3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-5Y/9ndYsbUMuhoK/oZbJDKw+XB4/JNrjuJ1ggihV14g=";
|
|
};
|
|
|
|
buildInputs = [ mock ];
|
|
propagatedBuildInputs = [ zope_testing ];
|
|
|
|
meta = with lib; {
|
|
description = "Inter-process locks";
|
|
homepage = "https://www.python.org/pypi/zc.lockfile";
|
|
license = licenses.zpl20;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
};
|
|
}
|