Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 26 lines 544 B view raw
1{ buildPythonPackage 2, fetchPypi 3, mock 4, zope_testing 5, stdenv 6}: 7 8buildPythonPackage rec { 9 pname = "zc.lockfile"; 10 version = "1.4"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "0lrj2zdr06sff7i151710jbbnnhx4phdc0qpns8jkarpd62f7a4m"; 15 }; 16 17 buildInputs = [ mock ]; 18 propagatedBuildInputs = [ zope_testing ]; 19 20 meta = with stdenv.lib; { 21 description = "Inter-process locks"; 22 homepage = https://www.python.org/pypi/zc.lockfile; 23 license = licenses.zpl20; 24 maintainers = with maintainers; [ goibhniu ]; 25 }; 26}