about summary refs log tree commit diff
path: root/pkgs/development/python-modules/apispec
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-02 09:20:30 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-02 09:20:30 +0200
commit12e0d86553b2a2720403df6b6c54a5c153cb59a1 (patch)
treef6b53364cf68f4219c630ed6af0188a893a66720 /pkgs/development/python-modules/apispec
parentf75e2a648c76976c8b2d5e9e147a1eaa0a84f3d8 (diff)
python3Packages.apispec: 4.6.0 -> 4.7.0
Diffstat (limited to 'pkgs/development/python-modules/apispec')
-rw-r--r--pkgs/development/python-modules/apispec/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/apispec/default.nix b/pkgs/development/python-modules/apispec/default.nix
index 2db76ab248393..3bc1e6d4a5cf7 100644
--- a/pkgs/development/python-modules/apispec/default.nix
+++ b/pkgs/development/python-modules/apispec/default.nix
@@ -12,12 +12,12 @@
 
 buildPythonPackage rec {
   pname = "apispec";
-  version = "4.6.0";
+  version = "4.7.0";
   disabled = pythonOlder "3.6";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "a896f97394b7d046d46c65262e51e45241dd8d9d71eedebcdb2d7024b775eec4";
+    sha256 = "sha256-v6G+yLWyzqZyfgIMOm/hHZYwiN0u1hbhFHXOry1naTc=";
   };
 
   propagatedBuildInputs = [
@@ -32,8 +32,10 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
+  pythonImportsCheck = [ "apispec" ];
+
   meta = with lib; {
-    description = "A pluggable API specification generator. Currently supports the OpenAPI Specification (f.k.a. the Swagger specification";
+    description = "A pluggable API specification generator with support for the OpenAPI Specification";
     homepage = "https://github.com/marshmallow-code/apispec";
     license = licenses.mit;
     maintainers = [ maintainers.costrouc ];