1{ buildPythonPackage
2, fetchPypi
3, mock
4, zope_testing
5, stdenv
6}:
7
8buildPythonPackage rec {
9 pname = "zc.lockfile";
10 version = "1.2.1";
11 name = "${pname}-${version}";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "11db91ada7f22fe8aae268d4bfdeae012c4fe655f66bbb315b00822ec00d043e";
16 };
17
18 buildInputs = [ mock ];
19 propagatedBuildInputs = [ zope_testing ];
20
21 meta = with stdenv.lib; {
22 description = "Inter-process locks";
23 homepage = http://www.python.org/pypi/zc.lockfile;
24 license = licenses.zpl20;
25 maintainers = with maintainers; [ goibhniu ];
26 };
27}