pythonPackages.zc_buildout: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 17:36:33 +02:00
committed by Frederik Rietdijk
parent 4c6bf74628
commit 84cccee36f
2 changed files with 19 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "zc.buildout";
version = "2.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "1xafi6ndlm964qj7pnmzmvhp719c8pgs7r7wkr508v3cq2jjw4m6";
};
meta = with stdenv.lib; {
homepage = http://www.buildout.org;
description = "A software build and configuration system";
license = licenses.zpl21;
maintainers = with maintainers; [ garbas ];
};
}