2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-10-16 11:03:28 -04:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, webtest
|
|
|
|
, zope_component
|
|
|
|
, hupper
|
2021-10-07 16:51:22 +02:00
|
|
|
, pastedeploy
|
2018-10-16 11:03:28 -04:00
|
|
|
, plaster
|
|
|
|
, plaster-pastedeploy
|
|
|
|
, repoze_lru
|
|
|
|
, translationstring
|
|
|
|
, venusian
|
|
|
|
, webob
|
|
|
|
, zope_deprecation
|
|
|
|
, zope_interface
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyramid";
|
2021-08-26 21:38:09 +02:00
|
|
|
version = "2.0";
|
2018-10-16 11:03:28 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-26 21:38:09 +02:00
|
|
|
sha256 = "45431b387587ed0fac6213b54d6e9f0936f0cc85238a8f5af7852fc9484c5c77";
|
2018-10-16 11:03:28 -04:00
|
|
|
};
|
|
|
|
|
2020-01-04 04:20:00 -05:00
|
|
|
checkInputs = [ webtest zope_component ];
|
2018-10-16 11:03:28 -04:00
|
|
|
|
2021-10-07 16:51:22 +02:00
|
|
|
propagatedBuildInputs = [ hupper pastedeploy plaster plaster-pastedeploy repoze_lru translationstring venusian webob zope_deprecation zope_interface ];
|
2018-10-16 11:03:28 -04:00
|
|
|
|
2021-02-16 23:18:06 +01:00
|
|
|
pythonImportsCheck = [ "pyramid" ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-16 11:03:28 -04:00
|
|
|
description = "The Pyramid Web Framework, a Pylons project";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://trypyramid.com/";
|
2018-10-16 11:03:28 -04:00
|
|
|
license = licenses.bsd0;
|
2019-07-03 11:27:39 +02:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2018-10-16 11:03:28 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|