about summary refs log tree commit diff
path: root/pkgs/development/python-modules/regenmaschine
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-01 20:47:39 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-01 20:47:39 +0200
commit807b3d6104f33e0d4b9269798ae37d21f799f03b (patch)
treed94d5b5549bb1f32f7cb0296f12fc0a82fbd4904 /pkgs/development/python-modules/regenmaschine
parentf75e2a648c76976c8b2d5e9e147a1eaa0a84f3d8 (diff)
python3Packages.regenmaschine: 3.1.2 -> 3.1.3
Diffstat (limited to 'pkgs/development/python-modules/regenmaschine')
-rw-r--r--pkgs/development/python-modules/regenmaschine/default.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/regenmaschine/default.nix b/pkgs/development/python-modules/regenmaschine/default.nix
index 02ac2da967261..e19c744ba655a 100644
--- a/pkgs/development/python-modules/regenmaschine/default.nix
+++ b/pkgs/development/python-modules/regenmaschine/default.nix
@@ -7,33 +7,37 @@
 , poetry-core
 , pytest-aiohttp
 , pytest-asyncio
-, pytest-cov
 , pytest-mock
 , pytestCheckHook
+, pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "regenmaschine";
-  version = "3.1.2";
+  version = "3.1.3";
   format = "pyproject";
+  disabled = pythonOlder "3.6";
 
   src = fetchFromGitHub {
     owner = "bachya";
     repo = pname;
     rev = version;
-    sha256 = "sha256-lARti3Sb/jh7h8x+lFLqkM/BlL6XmELm46owsL041Cw=";
+    sha256 = "sha256-3Q0JQQVspzuQQAn3S46uFbOYW2zQ7c1UL4zjEOnifDY=";
   };
 
-  nativeBuildInputs = [ poetry-core ];
+  nativeBuildInputs = [
+    poetry-core
+  ];
 
-  propagatedBuildInputs = [ aiohttp ];
+  propagatedBuildInputs = [
+    aiohttp
+  ];
 
   checkInputs = [
     aresponses
     asynctest
     pytest-aiohttp
     pytest-asyncio
-    pytest-cov
     pytest-mock
     pytestCheckHook
   ];