pythonPackages.bunch: Move to own file
This commit is contained in:
parent
84cccee36f
commit
007525282b
17
pkgs/development/python-modules/bunch/default.nix
Normal file
17
pkgs/development/python-modules/bunch/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bunch";
|
||||
version = "1.0.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1akalx2pd1fjlvrq69plvcx783ppslvikqdm93z2sdybq07pmish";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
@ -1426,16 +1426,7 @@ in {
|
||||
|
||||
zc_buildout221 = callPackage ../development/python-modules/buildout { };
|
||||
|
||||
bunch = buildPythonPackage (rec {
|
||||
name = "bunch-1.0.1";
|
||||
meta.maintainers = with maintainers; [ ];
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/b/bunch/${name}.tar.gz";
|
||||
sha256 = "1akalx2pd1fjlvrq69plvcx783ppslvikqdm93z2sdybq07pmish";
|
||||
};
|
||||
doCheck = false;
|
||||
});
|
||||
bunch = callPackage ../development/python-modules/bunch { };
|
||||
|
||||
can = callPackage ../development/python-modules/can {};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user