blob: 8cfd30c2e710003e2c29dc562bbffa216d2661ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
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 = with maintainers; [ goibhniu ];
};
}
|