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

29 lines
622 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, chameleon
, pyramid
, zope_interface
, setuptools
}:
buildPythonPackage rec {
pname = "pyramid_chameleon";
version = "0.3";
src = fetchPypi {
inherit pname version;
sha256 = "d176792a50eb015d7865b44bd9b24a7bd0489fa9a5cebbd17b9e05048cef9017";
};
propagatedBuildInputs = [ chameleon pyramid zope_interface setuptools ];
meta = with stdenv.lib; {
description = "Chameleon template compiler for pyramid";
homepage = https://github.com/Pylons/pyramid_chameleon;
license = licenses.bsd0;
maintainers = with maintainers; [ domenkozar ];
};
}