Files
nixpkgs/pkgs/development/python-modules/chameleon/default.nix
R. RyanTM 158c560fc2 python37Packages.chameleon: 3.5 -> 3.6 (#57391)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-chameleon/versions
2019-04-01 22:48:39 +02:00

23 lines
463 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "Chameleon";
version = "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "0141kfwx553q73wzfl624pppmbhh7fpzvaj5pbj21pqlk2rhfx75";
};
meta = with stdenv.lib; {
homepage = https://chameleon.readthedocs.io/;
description = "Fast HTML/XML Template Compiler";
license = licenses.bsd0;
maintainers = with maintainers; [ garbas domenkozar ];
};
}