about summary refs log tree commit diff
path: root/pkgs/development/python-modules/marshmallow-polyfield
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-09-22 23:04:33 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-09-22 23:04:33 +0200
commita98087d710aa7b874ac0686f7ae02fdb8790169f (patch)
tree80d9921c273cd62201e6cde7267df3d5eab29bf4 /pkgs/development/python-modules/marshmallow-polyfield
parentea8ff5a1298c48db97d65c64acd64bce436d4329 (diff)
python3Packages.marshmallow-polyfield: 5.9 -> 5.10
Diffstat (limited to 'pkgs/development/python-modules/marshmallow-polyfield')
-rw-r--r--pkgs/development/python-modules/marshmallow-polyfield/default.nix29
1 files changed, 20 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/marshmallow-polyfield/default.nix b/pkgs/development/python-modules/marshmallow-polyfield/default.nix
index aa2784cd1dbb0..6b5394ac2770c 100644
--- a/pkgs/development/python-modules/marshmallow-polyfield/default.nix
+++ b/pkgs/development/python-modules/marshmallow-polyfield/default.nix
@@ -1,32 +1,43 @@
-{ buildPythonPackage
+{ lib
+, buildPythonPackage
 , fetchFromGitHub
-, lib
 , marshmallow
-  # Check Inputs
+, pythonOlder
 , pytestCheckHook
-, pytest-cov
 }:
 
 buildPythonPackage rec {
   pname = "marshmallow-polyfield";
-  version = "5.9";
+  version = "5.10";
+
+  disabled = pythonOlder "3.6";
 
   src = fetchFromGitHub {
     owner = "Bachmann1234";
     repo = pname;
     rev = "v${version}";
-    sha256 = "15yx8ib5yx1xx6kq8wnfdmv9zm43k7y33c6zpq5rba6a30v4lcnd";
+    sha256 = "sha256-oF5LBuDK4kqsAcKwidju+wFjigjy4CNbJ6bfWpGO1yQ=";
   };
 
   propagatedBuildInputs = [
     marshmallow
   ];
 
-  # setuptools check can run, but won't find tests
-  checkInputs = [ pytestCheckHook pytest-cov ];
+  checkInputs = [
+    pytestCheckHook
+  ];
+
+  postPatch = ''
+    substituteInPlace setup.cfg \
+      --replace "--cov=marshmallow_polyfield" ""
+  '';
+
+  pythonImportsCheck = [
+    "marshmallow"
+  ];
 
   meta = with lib; {
-    description = "An unofficial extension to Marshmallow to allow for polymorphic fields";
+    description = "Extension to Marshmallow to allow for polymorphic fields";
     homepage = "https://github.com/Bachmann1234/marshmallow-polyfield";
     license = licenses.asl20;
     maintainers = with maintainers; [ drewrisinger ];