Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / buildout-nix / default.nix
blob834dd42bc087aa9d344a3e570077af79bda40056
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "zc.buildout";
5   version = "2.13.4";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "b978b2f9317b317ee4191f78fcc4f05b1ac41bdaaae47f0956f14c8285feef63";
10   };
12   patches = [ ./nix.patch ];
14   postInstall = "mv $out/bin/buildout{,-nix}";
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   };