Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 606 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, isPy3k }: 2 3buildPythonPackage rec { 4 pname = "cement"; 5 version = "3.0.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "8c692493c9d97b07e4a2c0770223fa5ee12a3110cfcb246d7d26fffe22edd22e"; 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}