forked from mirrors/nixpkgs
python311Packages.pyramid: update meta
- disable on unsupported Python releases
This commit is contained in:
parent
2432a70ca9
commit
2f44a31490
|
@ -13,28 +13,48 @@
|
|||
, webob
|
||||
, zope_deprecation
|
||||
, zope_interface
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyramid";
|
||||
version = "2.0.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-+r/XRQOeJq1bCRX8OW6HJcD4o9F7lB+WEezR7XbP59o=";
|
||||
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; {
|
||||
description = "The Pyramid Web Framework, a Pylons project";
|
||||
description = "Python web framework";
|
||||
homepage = "https://trypyramid.com/";
|
||||
changelog = "https://github.com/Pylons/pyramid/blob/${version}/CHANGES.rst";
|
||||
license = licenses.bsd0;
|
||||
maintainers = with maintainers; [ domenkozar ];
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue