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