summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest
diff options
context:
space:
mode:
authorMaik Figura <maiksensi@gmail.com>2017-11-15 21:25:32 +0100
committerMaik Figura <maiksensi@gmail.com>2017-11-15 23:06:14 +0100
commit171d0e3ac70604a2396a08798281e7ae754c28c1 (patch)
treef40112226effa40a7d27238bb0fccee1808458b1 /pkgs/development/python-modules/pytest
parent7c2834d4286fd6fd4c064b8dbfa5f64d2a6a3ca0 (diff)
downloadnixlib-171d0e3ac70604a2396a08798281e7ae754c28c1.tar
nixlib-171d0e3ac70604a2396a08798281e7ae754c28c1.tar.gz
nixlib-171d0e3ac70604a2396a08798281e7ae754c28c1.tar.bz2
nixlib-171d0e3ac70604a2396a08798281e7ae754c28c1.tar.lz
nixlib-171d0e3ac70604a2396a08798281e7ae754c28c1.tar.xz
nixlib-171d0e3ac70604a2396a08798281e7ae754c28c1.tar.zst
nixlib-171d0e3ac70604a2396a08798281e7ae754c28c1.zip
pytest: 3.2.3 -> 3.2.5
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 42a591e58b64..bb2e19c5233d 100644
--- a/pkgs/development/python-modules/pytest/default.nix
+++ b/pkgs/development/python-modules/pytest/default.nix
@@ -2,7 +2,7 @@
 , setuptools_scm
 }:
 buildPythonPackage rec {
-  version = "3.2.3";
+  version = "3.2.5";
   pname = "pytest";
   name = "${pname}-${version}";
 
@@ -13,7 +13,7 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "27fa6617efc2869d3e969a3e75ec060375bfb28831ade8b5cdd68da3a741dc3c";
+    sha256 = "6d5bd4f7113b444c55a3bbb5c738a3dd80d43563d063fc42dcb0aaefbdd78b81";
   };
 
   buildInputs = [ hypothesis setuptools_scm ];