Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 22 lines 458 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "Chameleon"; 8 version = "3.6.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0aw6cqnychmsxjjgihwr7df92xw6ac1wr4x70mvq28z3iq35x7ls"; 13 }; 14 15 meta = with stdenv.lib; { 16 homepage = https://chameleon.readthedocs.io/; 17 description = "Fast HTML/XML Template Compiler"; 18 license = licenses.bsd0; 19 maintainers = with maintainers; [ domenkozar ]; 20 }; 21 22}