Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 19 lines 506 B view raw
1{ lib, buildPythonPackage, fetchPypi, locale, pytestCheckHook, click, sortedcontainers, pyyaml }: 2 3buildPythonPackage rec { 4 pname = "cock"; 5 version = "0.8.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1gwaklvwlyvhz2c07hdmhbnqqmpybssxzzr0399dpjk7dgdqgam3"; 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}