pythonPackages.zc_buildout: Move to own file
This commit is contained in:
parent
4c6bf74628
commit
84cccee36f
18
pkgs/development/python-modules/buildout/default.nix
Normal file
18
pkgs/development/python-modules/buildout/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1424,21 +1424,7 @@ in {
|
|||||||
|
|
||||||
zc_buildout = self.zc_buildout221;
|
zc_buildout = self.zc_buildout221;
|
||||||
|
|
||||||
zc_buildout221 = buildPythonPackage rec {
|
zc_buildout221 = callPackage ../development/python-modules/buildout { };
|
||||||
name = "zc.buildout-2.2.1";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/z/zc.buildout/${name}.tar.gz";
|
|
||||||
sha256 = "a6122ea5c06c6c044a9efce4a3df452c8573e1aebfda7b24262655daac894ef5";
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "http://www.buildout.org";
|
|
||||||
description = "A software build and configuration system";
|
|
||||||
license = licenses.zpl21;
|
|
||||||
maintainers = with maintainers; [ garbas ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
bunch = buildPythonPackage (rec {
|
bunch = buildPythonPackage (rec {
|
||||||
name = "bunch-1.0.1";
|
name = "bunch-1.0.1";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user