about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiorecollect
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-04-29 09:54:32 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-04-29 09:54:32 +0200
commitc809b48b2f6cdfadf02a327aaacd9afb8452c2e2 (patch)
tree91eccd1bafe66c1c0efb96837f4c4ec8cc8598ad /pkgs/development/python-modules/aiorecollect
parent0fe6b1ccde4f80ff7a3c969dffb57a811932dc38 (diff)
python3Packages.aiorecollect: 1.0.3 -> 1.0.4
Diffstat (limited to 'pkgs/development/python-modules/aiorecollect')
-rw-r--r--pkgs/development/python-modules/aiorecollect/default.nix17
1 files changed, 10 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/aiorecollect/default.nix b/pkgs/development/python-modules/aiorecollect/default.nix
index 53daf1f226969..1bce60ce6af9d 100644
--- a/pkgs/development/python-modules/aiorecollect/default.nix
+++ b/pkgs/development/python-modules/aiorecollect/default.nix
@@ -1,7 +1,6 @@
 { lib
 , aiohttp
 , aresponses
-, async-timeout
 , buildPythonPackage
 , fetchFromGitHub
 , freezegun
@@ -13,19 +12,23 @@
 
 buildPythonPackage rec {
   pname = "aiorecollect";
-  version = "1.0.3";
+  version = "1.0.4";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "bachya";
     repo = pname;
     rev = version;
-    sha256 = "sha256-S4HL8vJS/dTKsR5egKRSHqZYPClcET5Le06euHPyIkU=";
+    sha256 = "sha256-A4qk7eo4maCRP4UmtWrRCPvG6YrLVSOiOcfN8pEj5Po=";
   };
 
-  nativeBuildInputs = [ poetry-core ];
+  nativeBuildInputs = [
+    poetry-core
+  ];
 
-  propagatedBuildInputs = [ aiohttp ];
+  propagatedBuildInputs = [
+    aiohttp
+  ];
 
   checkInputs = [
     aresponses
@@ -35,8 +38,8 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
-  # Ignore the examples as they are prefixed with test_
-  pytestFlagsArray = [ "--ignore examples/" ];
+  disabledTestPaths = [ "examples/" ];
+
   pythonImportsCheck = [ "aiorecollect" ];
 
   meta = with lib; {