1{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
2
3buildPythonPackage rec {
4 pname = "cement";
5 version = "3.0.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "e50e1033d61d18b36787a60d52cad0d3fe20780e7e2f78f0204bde32000645f9";
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 disabled = !isPy3k;
17
18 meta = with stdenv.lib; {
19 homepage = http://builtoncement.com/;
20 description = "A CLI Application Framework for Python.";
21 maintainers = with maintainers; [ eqyiel ];
22 license = licenses.bsd3;
23 };
24}