about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-lz4/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-lz4/default.nix')
-rw-r--r--pkgs/development/python-modules/python-lz4/default.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/python-lz4/default.nix b/pkgs/development/python-modules/python-lz4/default.nix
index 544d8f6254d6..c7709c4886d9 100644
--- a/pkgs/development/python-modules/python-lz4/default.nix
+++ b/pkgs/development/python-modules/python-lz4/default.nix
@@ -1,29 +1,30 @@
 { lib
 , buildPythonPackage
 , fetchFromGitHub
-, pytestrunner
-, pytest
+, future
+, isPy3k
+, pkgconfig
 , psutil
+, pytest
+, pytestcov
+, pytestrunner
 , setuptools_scm
-, pkgconfig
-, isPy3k
-, future
 }:
 
 buildPythonPackage rec {
   pname = "python-lz4";
-  version = "2.1.2";
+  version = "2.1.6";
 
   # get full repository inorder to run tests
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = "v${version}";
-    sha256 = "1kzzdfkrq9nnlh0wssa6ccncvv0sk4wmhivhgyndjxz6d6przl5d";
+    sha256 = "1gx228946c2w645sh190m7ixfd0zfkdl3i8ybga77jz2sn1chzdi";
   };
 
   buildInputs = [ setuptools_scm pkgconfig pytestrunner ];
-  checkInputs = [ pytest psutil ];
+  checkInputs = [ pytest pytestcov psutil ];
   propagatedBuildInputs = lib.optionals (!isPy3k) [ future ];
 
   # give a hint to setuptools_scm on package version