pythonPackages.cement: init at 2.8.2
This is a dependency of awsebcli.
This commit is contained in:
parent
9a0155a241
commit
742de0bf24
23
pkgs/development/python-modules/cement/default.nix
Normal file
23
pkgs/development/python-modules/cement/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "cement";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
version = "2.8.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1li2whjzfhbpg6fjb6r1r92fb3967p1xv6hqs3j787865h2ysrc7";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Disable test tests since they depend on a memcached server running on
|
||||||
|
# 127.0.0.1:11211.
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://builtoncement.com/;
|
||||||
|
description = "A CLI Application Framework for Python.";
|
||||||
|
maintainers = with maintainers; [ eqyiel ];
|
||||||
|
license = licenses.bsd3;
|
||||||
|
};
|
||||||
|
}
|
@ -1560,6 +1560,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cement = callPackage ../development/python-modules/cement {};
|
||||||
|
|
||||||
cgroup-utils = callPackage ../development/python-modules/cgroup-utils {};
|
cgroup-utils = callPackage ../development/python-modules/cgroup-utils {};
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace setup.py --replace "argparse" ""
|
substituteInPlace setup.py --replace "argparse" ""
|
||||||
|
Loading…
Reference in New Issue
Block a user