pythonPackages.pyramid_mako: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-16 11:19:37 -04:00
committed by Frederik Rietdijk
parent 8ad4ee2c80
commit 5b2e663e77
2 changed files with 28 additions and 12 deletions

View File

@@ -0,0 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, webtest
, pyramid
, Mako
}:
buildPythonPackage rec {
pname = "pyramid_mako";
version = "0.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "00811djmsc4rz20kpy2paam05fbx6dmrv2i5jf90f6xp6zw4isy6";
};
buildInputs = [ webtest ];
propagatedBuildInputs = [ pyramid Mako ];
meta = with stdenv.lib; {
homepage = https://github.com/Pylons/pyramid_mako;
description = "Mako template bindings for the Pyramid web framework";
license = licenses.bsd0;
};
}