Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 17.09 458 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2buildPythonPackage rec { 3 pname = "kitchen"; 4 version = "1.2.5"; 5 name = "${pname}-${version}"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "af9fbb60f68cbdb2ead402beb8fa7c7edadbe2aa7b5a70138b7c4b0fa88153fd"; 10 }; 11 12 meta = with stdenv.lib; { 13 description = "Kitchen contains a cornucopia of useful code"; 14 license = licenses.lgpl2; 15 maintainers = with maintainers; [ mornfall ]; 16 }; 17}