about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-08-17 16:34:01 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-08-18 11:48:40 +0200
commit1615ce80b151f534c2f1807d288ca785c4b2dd21 (patch)
tree202446e51a33a245c94403c26b91dfcc0ae6308c
parentdcf786eb232273f1ba9a7eb2e5efb3ecb0b33ea6 (diff)
downloadnixlib-1615ce80b151f534c2f1807d288ca785c4b2dd21.tar
nixlib-1615ce80b151f534c2f1807d288ca785c4b2dd21.tar.gz
nixlib-1615ce80b151f534c2f1807d288ca785c4b2dd21.tar.bz2
nixlib-1615ce80b151f534c2f1807d288ca785c4b2dd21.tar.lz
nixlib-1615ce80b151f534c2f1807d288ca785c4b2dd21.tar.xz
nixlib-1615ce80b151f534c2f1807d288ca785c4b2dd21.tar.zst
nixlib-1615ce80b151f534c2f1807d288ca785c4b2dd21.zip
pythonPackages.pytest: 4.6.3 -> 4.6.5
-rw-r--r--pkgs/development/python-modules/pytest/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pytest/default.nix b/pkgs/development/python-modules/pytest/default.nix
index 96001a2d952e..7a43a2e2517b 100644
--- a/pkgs/development/python-modules/pytest/default.nix
+++ b/pkgs/development/python-modules/pytest/default.nix
@@ -3,7 +3,7 @@
 , atomicwrites, mock, writeText, pathlib2, wcwidth, packaging, isPyPy
 }:
 buildPythonPackage rec {
-  version = "4.6.3";
+  version = "4.6.5";
   pname = "pytest";
 
   preCheck = ''
@@ -13,7 +13,7 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "4a784f1d4f2ef198fe9b7aef793e9fa1a3b2f84e822d9b3a64a181293a572d45";
+    sha256 = "8fc39199bdda3d9d025d3b1f4eb99a192c20828030ea7c9a0d2840721de7d347";
   };
 
   checkInputs = [ hypothesis mock ];