f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
28 lines
539 B
Nix
28 lines
539 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
mock,
|
|
zope-testing,
|
|
lib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zc-lockfile";
|
|
version = "3.0.post1";
|
|
|
|
src = fetchPypi {
|
|
pname = "zc.lockfile";
|
|
inherit version;
|
|
hash = "sha256-rbLubZ5qIzPJEXjcssm5aldEx47bdxLceEp9dWSOgew=";
|
|
};
|
|
|
|
buildInputs = [ mock ];
|
|
propagatedBuildInputs = [ zope-testing ];
|
|
|
|
meta = with lib; {
|
|
description = "Inter-process locks";
|
|
homepage = "https://www.python.org/pypi/zc.lockfile";
|
|
license = licenses.zpl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|