at 22.05-pre 493 B view raw
1{ lib, buildPythonPackage, fetchPypi, click, sortedcontainers, pyyaml }: 2 3buildPythonPackage rec { 4 pname = "cock"; 5 version = "0.9.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0d9021c2d9ce0dbf495a3c5ef960a9996a0681bb96ff6099f37302a3813a184e"; 10 }; 11 12 propagatedBuildInputs = [ click sortedcontainers pyyaml ]; 13 14 meta = with lib; { 15 homepage = "https://github.com/pohmelie/cock"; 16 description = "Configuration file with click"; 17 license = licenses.mit; 18 }; 19}