Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pythonOlder, 6}: 7 8buildPythonPackage rec { 9 pname = "cement"; 10 version = "3.0.10"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.5"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-c9EBXr+bjfE+a8mH7fDUvj8ci0Q4kh7qjWbLtVBK7hU="; 18 }; 19 20 # Disable test tests since they depend on a memcached server running on 21 # 127.0.0.1:11211. 22 doCheck = false; 23 24 pythonImportsCheck = [ "cement" ]; 25 26 meta = with lib; { 27 description = "CLI Application Framework for Python"; 28 mainProgram = "cement"; 29 homepage = "https://builtoncement.com/"; 30 license = licenses.bsd3; 31 maintainers = with maintainers; [ eqyiel ]; 32 }; 33}