Merge pull request #171020 from r-ryantm/auto-update/python310Packages.apispec
python310Packages.apispec: 5.1.1 -> 5.2.0
This commit is contained in:
commit
41ea86069c
1 changed files with 13 additions and 9 deletions
|
@ -1,23 +1,25 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pythonOlder
|
|
||||||
, pyyaml
|
|
||||||
, prance
|
|
||||||
, marshmallow
|
, marshmallow
|
||||||
, pytestCheckHook
|
|
||||||
, mock
|
, mock
|
||||||
, openapi-spec-validator
|
, openapi-spec-validator
|
||||||
|
, prance
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, pyyaml
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "apispec";
|
pname = "apispec";
|
||||||
version = "5.1.1";
|
version = "5.2.0";
|
||||||
disabled = pythonOlder "3.6";
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "d167890e37f14f3f26b588ff2598af35faa5c27612264ea1125509c8ff860834";
|
hash = "sha256-XqNGC0MRULYWMj3WHsu3VXwurnF9r8HW50SUuF2PksE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -32,12 +34,14 @@ buildPythonPackage rec {
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "apispec" ];
|
pythonImportsCheck = [
|
||||||
|
"apispec"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A pluggable API specification generator with support for the OpenAPI Specification";
|
description = "A pluggable API specification generator with support for the OpenAPI Specification";
|
||||||
homepage = "https://github.com/marshmallow-code/apispec";
|
homepage = "https://github.com/marshmallow-code/apispec";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.costrouc ];
|
maintainers = with maintainers; [ costrouc ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue