Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 22 lines 472 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "Chameleon"; 8 version = "3.8.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "adf9609a2fa4ad20deb390605495f9a5d617b737bfbd86e51a49bbac2acaf316"; 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}