summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-10-16 11:43:13 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-18 09:54:01 +0200
commit2ea05d40d4c760abf9a9a056a19c8d3dd188d599 (patch)
tree92551e20d5d21eda5b66ec42e599d00a50ceef68 /pkgs/development/python-modules/pytest
parent9bc0ce53f094db490c79860ee3a93bb38b01fc16 (diff)
downloadnixpkgs-2ea05d40d4c760abf9a9a056a19c8d3dd188d599.tar
nixpkgs-2ea05d40d4c760abf9a9a056a19c8d3dd188d599.tar.gz
nixpkgs-2ea05d40d4c760abf9a9a056a19c8d3dd188d599.tar.bz2
nixpkgs-2ea05d40d4c760abf9a9a056a19c8d3dd188d599.tar.lz
nixpkgs-2ea05d40d4c760abf9a9a056a19c8d3dd188d599.tar.xz
nixpkgs-2ea05d40d4c760abf9a9a056a19c8d3dd188d599.tar.zst
nixpkgs-2ea05d40d4c760abf9a9a056a19c8d3dd188d599.zip
python: pytest: 4.6.5 -> 4.6.6
Diffstat (limited to 'pkgs/development/python-modules/pytest')
-rw-r--r--pkgs/development/python-modules/pytest/4.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pytest/4.nix b/pkgs/development/python-modules/pytest/4.nix
index 7a43a2e2517..a3beae4e0cf 100644
--- a/pkgs/development/python-modules/pytest/4.nix
+++ b/pkgs/development/python-modules/pytest/4.nix
@@ -3,7 +3,7 @@
 , atomicwrites, mock, writeText, pathlib2, wcwidth, packaging, isPyPy
 }:
 buildPythonPackage rec {
-  version = "4.6.5";
+  version = "4.6.6";
   pname = "pytest";
 
   preCheck = ''
@@ -13,7 +13,7 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "8fc39199bdda3d9d025d3b1f4eb99a192c20828030ea7c9a0d2840721de7d347";
+    sha256 = "692d9351353ef709c1126266579edd4fd469dcf6b5f4f583050f72161d6f3592";
   };
 
   checkInputs = [ hypothesis mock ];