at master 531 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 click, 6 sortedcontainers, 7 pyyaml, 8}: 9 10buildPythonPackage rec { 11 pname = "cock"; 12 version = "0.11.0"; 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-Hi8aFxATsYcEO6qNzZnF73V8WLTQjb6Dw2xF4VgT2o4="; 18 }; 19 20 propagatedBuildInputs = [ 21 click 22 sortedcontainers 23 pyyaml 24 ]; 25 26 meta = with lib; { 27 homepage = "https://github.com/pohmelie/cock"; 28 description = "Configuration file with click"; 29 license = licenses.mit; 30 }; 31}