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