about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-04-18 09:15:53 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-04-18 11:33:22 +0200
commita697985e37b8a8d7c0c1db2f59b0e744ec9c0941 (patch)
tree7ac7023d414e159823190904d36f226f83903f21 /pkgs/development/python-modules/pytest
parentf225ffa397adb63626b198b4321a0ca52057e11d (diff)
downloadnixlib-a697985e37b8a8d7c0c1db2f59b0e744ec9c0941.tar
nixlib-a697985e37b8a8d7c0c1db2f59b0e744ec9c0941.tar.gz
nixlib-a697985e37b8a8d7c0c1db2f59b0e744ec9c0941.tar.bz2
nixlib-a697985e37b8a8d7c0c1db2f59b0e744ec9c0941.tar.lz
nixlib-a697985e37b8a8d7c0c1db2f59b0e744ec9c0941.tar.xz
nixlib-a697985e37b8a8d7c0c1db2f59b0e744ec9c0941.tar.zst
nixlib-a697985e37b8a8d7c0c1db2f59b0e744ec9c0941.zip
pythonPackages.pytest: 3.0.6 -> 3.0.7
Diffstat (limited to 'pkgs/development/python-modules/pytest')
-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 d3fea5a3b43f..90b67022c5b1 100644
--- a/pkgs/development/python-modules/pytest/default.nix
+++ b/pkgs/development/python-modules/pytest/default.nix
@@ -1,7 +1,7 @@
 { stdenv, buildPythonPackage, fetchurl, isPy26, argparse, hypothesis, py }:
 buildPythonPackage rec {
   name = "pytest-${version}";
-  version = "3.0.6";
+  version = "3.0.7";
 
   preCheck = ''
     # don't test bash builtins
@@ -10,7 +10,7 @@ buildPythonPackage rec {
 
   src = fetchurl {
     url = "mirror://pypi/p/pytest/${name}.tar.gz";
-    sha256 = "0h6rfp7y7c5mqwfm9fy5fq4l9idnp160c82ylcfjg251y6lk8d34";
+    sha256 = "b70696ebd1a5e6b627e7e3ac1365a4bc60aaf3495e843c1e70448966c5224cab";
   };
 
   buildInputs = [ hypothesis ];