nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 33 lines 683 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonOlder 5}: 6 7buildPythonPackage rec { 8 pname = "cement"; 9 version = "3.0.6"; 10 format = "setuptools"; 11 12 disabled = pythonOlder "3.5"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "fccec41eab3f15a03445b1ce24c8a7e106d4d5520f6507a7145698ce68923d31"; 17 }; 18 19 # Disable test tests since they depend on a memcached server running on 20 # 127.0.0.1:11211. 21 doCheck = false; 22 23 pythonImportsCheck = [ 24 "cement" 25 ]; 26 27 meta = with lib; { 28 description = "CLI Application Framework for Python"; 29 homepage = "https://builtoncement.com/"; 30 license = licenses.bsd3; 31 maintainers = with maintainers; [ eqyiel ]; 32 }; 33}