summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-07-29 13:55:34 +0000
committerGitHub <noreply@github.com>2021-07-29 13:55:34 +0000
commit8610b9c485c6d959b1e41a898fa28109c12c679e (patch)
tree808483e8fc127f26beead3951b615efdbdcc2ba5 /pkgs/development/python-modules
parentf0c3961c544b9d8a7ae16c6d20ff22ad39a78da5 (diff)
parent388cece8f056636cf4649a7b3a6dad56685ad765 (diff)
downloadnixpkgs-8610b9c485c6d959b1e41a898fa28109c12c679e.tar
nixpkgs-8610b9c485c6d959b1e41a898fa28109c12c679e.tar.gz
nixpkgs-8610b9c485c6d959b1e41a898fa28109c12c679e.tar.bz2
nixpkgs-8610b9c485c6d959b1e41a898fa28109c12c679e.tar.lz
nixpkgs-8610b9c485c6d959b1e41a898fa28109c12c679e.tar.xz
nixpkgs-8610b9c485c6d959b1e41a898fa28109c12c679e.tar.zst
nixpkgs-8610b9c485c6d959b1e41a898fa28109c12c679e.zip
Merge pull request #131884 from fabaff/bump-pyiqvia
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pyiqvia/default.nix15
1 files changed, 10 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/pyiqvia/default.nix b/pkgs/development/python-modules/pyiqvia/default.nix
index 34bc7bb5eb6..5dce573eaeb 100644
--- a/pkgs/development/python-modules/pyiqvia/default.nix
+++ b/pkgs/development/python-modules/pyiqvia/default.nix
@@ -12,7 +12,7 @@
 
 buildPythonPackage rec {
   pname = "pyiqvia";
-  version = "1.0.0";
+  version = "1.0.1";
   format = "pyproject";
 
   disabled = pythonOlder "3.6";
@@ -21,12 +21,16 @@ buildPythonPackage rec {
     owner = "bachya";
     repo = pname;
     rev = version;
-    sha256 = "sha256-6BbJgRpn2hivm4N3Zpll9NACMSNlIhxj8CF2iVduIro=";
+    sha256 = "18qzxxn9xw9rwv3qz8k3zxh9xxy8c7rs8xlsrdrcq9wb0dhd7p0r";
   };
 
-  nativeBuildInputs = [ poetry-core ];
+  nativeBuildInputs = [
+    poetry-core
+  ];
 
-  propagatedBuildInputs = [ aiohttp ];
+  propagatedBuildInputs = [
+    aiohttp
+  ];
 
   checkInputs = [
     aresponses
@@ -36,7 +40,8 @@ buildPythonPackage rec {
   ];
 
   # Ignore the examples as they are prefixed with test_
-  pytestFlagsArray = [ "--ignore examples/" ];
+  disabledTestPaths = [ "examples/" ];
+
   pythonImportsCheck = [ "pyiqvia" ];
 
   meta = with lib; {