7eb22c8fe4
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
23 lines
465 B
Nix
23 lines
465 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Chameleon";
|
|
version = "3.6.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0aw6cqnychmsxjjgihwr7df92xw6ac1wr4x70mvq28z3iq35x7ls";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://chameleon.readthedocs.io/;
|
|
description = "Fast HTML/XML Template Compiler";
|
|
license = licenses.bsd0;
|
|
maintainers = with maintainers; [ garbas domenkozar ];
|
|
};
|
|
|
|
}
|