Merge pull request #213699 from wegank/pyramid-bump

python311Packages.pyramid: 2.0 -> 2.0.1
This commit is contained in:
Weijia Wang 2023-01-31 10:53:03 +01:00 committed by GitHub
commit 3e147df232
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,28 +13,48 @@
, webob , webob
, zope_deprecation , zope_deprecation
, zope_interface , zope_interface
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyramid"; pname = "pyramid";
version = "2.0"; version = "2.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "45431b387587ed0fac6213b54d6e9f0936f0cc85238a8f5af7852fc9484c5c77"; hash = "sha256-+r/XRQOeJq1bCRX8OW6HJcD4o9F7lB+WEezR7XbP59o=";
}; };
nativeCheckInputs = [ webtest zope_component ]; propagatedBuildInputs = [
hupper
pastedeploy
plaster
plaster-pastedeploy
repoze_lru
translationstring
venusian
webob
zope_deprecation
zope_interface
];
propagatedBuildInputs = [ hupper pastedeploy plaster plaster-pastedeploy repoze_lru translationstring venusian webob zope_deprecation zope_interface ]; nativeCheckInputs = [
webtest
zope_component
];
pythonImportsCheck = [ "pyramid" ]; pythonImportsCheck = [
"pyramid"
];
meta = with lib; { meta = with lib; {
description = "The Pyramid Web Framework, a Pylons project"; description = "Python web framework";
homepage = "https://trypyramid.com/"; homepage = "https://trypyramid.com/";
changelog = "https://github.com/Pylons/pyramid/blob/${version}/CHANGES.rst";
license = licenses.bsd0; license = licenses.bsd0;
maintainers = with maintainers; [ domenkozar ]; maintainers = with maintainers; [ domenkozar ];
}; };
} }