nixpkgs/pkgs/development/python-modules/chameleon/default.nix

23 lines
472 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "Chameleon";
2020-08-16 18:30:55 +01:00
version = "3.8.1";
src = fetchPypi {
inherit pname version;
2020-08-16 18:30:55 +01:00
sha256 = "adf9609a2fa4ad20deb390605495f9a5d617b737bfbd86e51a49bbac2acaf316";
};
meta = with stdenv.lib; {
homepage = "https://chameleon.readthedocs.io/";
description = "Fast HTML/XML Template Compiler";
license = licenses.bsd0;
maintainers = with maintainers; [ domenkozar ];
};
}