Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 28 lines 622 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, chameleon 5, pyramid 6, zope_interface 7, setuptools 8}: 9 10buildPythonPackage rec { 11 pname = "pyramid_chameleon"; 12 version = "0.3"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "d176792a50eb015d7865b44bd9b24a7bd0489fa9a5cebbd17b9e05048cef9017"; 17 }; 18 19 propagatedBuildInputs = [ chameleon pyramid zope_interface setuptools ]; 20 21 meta = with stdenv.lib; { 22 description = "Chameleon template compiler for pyramid"; 23 homepage = https://github.com/Pylons/pyramid_chameleon; 24 license = licenses.bsd0; 25 maintainers = with maintainers; [ domenkozar ]; 26 }; 27 28}