1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "zc.buildout"; 5 version = "2.13.4"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "b978b2f9317b317ee4191f78fcc4f05b1ac41bdaaae47f0956f14c8285feef63"; 10 }; 11 12 patches = [ ./nix.patch ]; 13 14 postInstall = "mv $out/bin/buildout{,-nix}"; 15 16 meta = with lib; { 17 homepage = "http://www.buildout.org"; 18 description = "A software build and configuration system"; 19 license = licenses.zpl21; 20 maintainers = [ maintainers.goibhniu ]; 21 }; 22}