summary refs log tree commit diff
path: root/pkgs/development/python-modules/cement
diff options
context:
space:
mode:
authorRuben Maher <r@rkm.id.au>2017-09-01 21:09:45 +0930
committerFrederik Rietdijk <fridh@fridh.nl>2017-09-23 08:23:43 +0200
commit742de0bf24718c2f5a664d9c909e5aeae8d2c855 (patch)
treea5363d62cf2d5775ded7d6a2c976c744a5fb1bc3 /pkgs/development/python-modules/cement
parent9a0155a241cbc89ef53ae168219a430667c130db (diff)
downloadnixlib-742de0bf24718c2f5a664d9c909e5aeae8d2c855.tar
nixlib-742de0bf24718c2f5a664d9c909e5aeae8d2c855.tar.gz
nixlib-742de0bf24718c2f5a664d9c909e5aeae8d2c855.tar.bz2
nixlib-742de0bf24718c2f5a664d9c909e5aeae8d2c855.tar.lz
nixlib-742de0bf24718c2f5a664d9c909e5aeae8d2c855.tar.xz
nixlib-742de0bf24718c2f5a664d9c909e5aeae8d2c855.tar.zst
nixlib-742de0bf24718c2f5a664d9c909e5aeae8d2c855.zip
pythonPackages.cement: init at 2.8.2
This is a dependency of awsebcli.
Diffstat (limited to 'pkgs/development/python-modules/cement')
-rw-r--r--pkgs/development/python-modules/cement/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cement/default.nix b/pkgs/development/python-modules/cement/default.nix
new file mode 100644
index 000000000000..2ed704e34825
--- /dev/null
+++ b/pkgs/development/python-modules/cement/default.nix
@@ -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;
+  };
+}