1{ lib 2, buildPythonPackage 3, fetchPypi 4, webtest 5, zope_component 6, hupper 7, pastedeploy 8, plaster 9, plaster-pastedeploy 10, repoze_lru 11, translationstring 12, venusian 13, webob 14, zope_deprecation 15, zope_interface 16}: 17 18buildPythonPackage rec { 19 pname = "pyramid"; 20 version = "2.0"; 21 22 src = fetchPypi { 23 inherit pname version; 24 sha256 = "45431b387587ed0fac6213b54d6e9f0936f0cc85238a8f5af7852fc9484c5c77"; 25 }; 26 27 checkInputs = [ webtest zope_component ]; 28 29 propagatedBuildInputs = [ hupper pastedeploy plaster plaster-pastedeploy repoze_lru translationstring venusian webob zope_deprecation zope_interface ]; 30 31 pythonImportsCheck = [ "pyramid" ]; 32 33 meta = with lib; { 34 description = "The Pyramid Web Framework, a Pylons project"; 35 homepage = "https://trypyramid.com/"; 36 license = licenses.bsd0; 37 maintainers = with maintainers; [ domenkozar ]; 38 }; 39 40}