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