Merge pull request #293459 from fabaff/apispec-bump

python311Packages.apispec: 6.4.0 -> 6.5.0
This commit is contained in:
Fabian Affolter 2024-03-05 11:04:55 +01:00 committed by GitHub
commit b3fc454904
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, marshmallow
, mock
, openapi-spec-validator
@ -9,20 +10,25 @@
, pytestCheckHook
, pythonOlder
, pyyaml
, setuptools
}:
buildPythonPackage rec {
pname = "apispec";
version = "6.4.0";
format = "setuptools";
version = "6.5.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-QrimgzzxVMnb0i0Aa1a/nEnJctMtJP5xb9c04Pa3Obg=";
hash = "sha256-wDpNhIrnDpuyJp3U5NMNjsfsBp0k756bQi48vRqf55Q=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
packaging
];