pythonPackages.chameleon: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-16 13:21:27 -04:00 committed by Frederik Rietdijk
parent 92663b2aa4
commit 48e807cf9f
2 changed files with 23 additions and 12 deletions

View File

@ -0,0 +1,22 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "Chameleon";
version = "2.25";
src = fetchPypi {
inherit pname version;
sha256 = "0va95cml7wfjpvgj3dc9xdn8psyjh3zbk6v51b0hcqv2fzh409vb";
};
meta = with stdenv.lib; {
homepage = https://chameleon.readthedocs.io/;
description = "Fast HTML/XML Template Compiler";
license = licenses.bsd0;
maintainers = with maintainers; [ garbas domenkozar ];
};
}

View File

@ -2207,18 +2207,7 @@ in {
venusian = callPackage ../development/python-modules/venusian { };
chameleon = buildPythonPackage rec {
name = "Chameleon-2.25";
src = pkgs.fetchurl {
url = "mirror://pypi/C/Chameleon/${name}.tar.gz";
sha256 = "0va95cml7wfjpvgj3dc9xdn8psyjh3zbk6v51b0hcqv2fzh409vb";
} ;
meta = {
maintainers = with maintainers; [ garbas domenkozar ];
};
};
chameleon = callPackage ../development/python-modules/chameleon { };
ddt = buildPythonPackage (rec {
name = "ddt-1.0.0";