1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "cement";
5 version = "2.10.2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "d50c5980bf3e2456e515178ba097d16e36be0fbcab7811a60589d22f45b64f55";
10 };
11
12 # Disable test tests since they depend on a memcached server running on
13 # 127.0.0.1:11211.
14 doCheck = false;
15
16 meta = with stdenv.lib; {
17 homepage = http://builtoncement.com/;
18 description = "A CLI Application Framework for Python.";
19 maintainers = with maintainers; [ eqyiel ];
20 license = licenses.bsd3;
21 };
22}