pythonPackages.cement: init at 2.8.2

This is a dependency of awsebcli.
This commit is contained in:
Ruben Maher
2017-09-01 21:09:45 +09:30
committed by Frederik Rietdijk
parent 9a0155a241
commit 742de0bf24
2 changed files with 25 additions and 0 deletions

View 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;
};
}