about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sortedcollections
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-01-20 08:58:03 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-01-20 08:58:03 +0100
commit02a0928803370a0cc786269b592275ed50b669d3 (patch)
treeb40b565a4d318729c60d778194a46a03c8a7b5d8 /pkgs/development/python-modules/sortedcollections
parentdd3238c002f51c2ab8fc325bf4fa330a29c64ed6 (diff)
python3Packages.sortedcollections: 1.2.3 -> 2.1.0
Diffstat (limited to 'pkgs/development/python-modules/sortedcollections')
-rw-r--r--pkgs/development/python-modules/sortedcollections/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/sortedcollections/default.nix b/pkgs/development/python-modules/sortedcollections/default.nix
index 7bdeeffc0869f..9f9f99a1856c8 100644
--- a/pkgs/development/python-modules/sortedcollections/default.nix
+++ b/pkgs/development/python-modules/sortedcollections/default.nix
@@ -1,24 +1,28 @@
-{ lib, stdenv
+{ lib
 , buildPythonPackage
 , fetchFromGitHub
+, pytest-cov
 , pytestCheckHook
 , sortedcontainers
 }:
 
 buildPythonPackage rec {
   pname = "sortedcollections";
-  version = "1.2.3";
+  version = "2.1.0";
 
   src = fetchFromGitHub {
     owner = "grantjenks";
     repo = "python-sortedcollections";
     rev = "v${version}";
-    sha256 = "06ifkbhkj5fpsafibw0fs7b778g7q0gd03crvbjk04k0f3wjxc5z";
+    sha256 = "sha256-GkZO8afUAgDpDjIa3dhO6nxykqrljeKldunKMODSXfg=";
   };
 
   propagatedBuildInputs = [ sortedcontainers ];
 
-  checkInputs = [ pytestCheckHook ];
+  checkInputs = [
+    pytest-cov
+    pytestCheckHook
+  ];
 
   pythonImportsCheck = [ "sortedcollections" ];