summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-06-21 07:37:18 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-06-22 13:09:44 +0200
commit7d4922b2e0e4daadc0698c18692efd27ff26ab79 (patch)
tree7bd3c97631787d0c2254b2619e193c26a1fbad60 /pkgs/development/python-modules/pytest
parenta83e81c59b99b0aba528d5c931cd6566467de94a (diff)
downloadnixpkgs-7d4922b2e0e4daadc0698c18692efd27ff26ab79.tar
nixpkgs-7d4922b2e0e4daadc0698c18692efd27ff26ab79.tar.gz
nixpkgs-7d4922b2e0e4daadc0698c18692efd27ff26ab79.tar.bz2
nixpkgs-7d4922b2e0e4daadc0698c18692efd27ff26ab79.tar.lz
nixpkgs-7d4922b2e0e4daadc0698c18692efd27ff26ab79.tar.xz
nixpkgs-7d4922b2e0e4daadc0698c18692efd27ff26ab79.tar.zst
nixpkgs-7d4922b2e0e4daadc0698c18692efd27ff26ab79.zip
python: pytest: 3.6.1 -> 3.6.2
Diffstat (limited to 'pkgs/development/python-modules/pytest')
-rw-r--r--pkgs/development/python-modules/pytest/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/pytest/default.nix b/pkgs/development/python-modules/pytest/default.nix
index ef60b3e8236..d8d22ced974 100644
--- a/pkgs/development/python-modules/pytest/default.nix
+++ b/pkgs/development/python-modules/pytest/default.nix
@@ -1,9 +1,9 @@
 { stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, attrs, hypothesis, py
 , setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools
-, atomicwrites
+, atomicwrites, mock
 }:
 buildPythonPackage rec {
-  version = "3.6.1";
+  version = "3.6.2";
   pname = "pytest";
 
   preCheck = ''
@@ -13,10 +13,10 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "32c49a69566aa7c333188149ad48b58ac11a426d5352ea3d8f6ce843f88199cb";
+    sha256 = "8ea01fc4fcc8e1b1e305252b4bc80a1528019ab99fd3b88666c9dc38d754406c";
   };
 
-  checkInputs = [ hypothesis ];
+  checkInputs = [ hypothesis mock ];
   buildInputs = [ setuptools_scm ];
   propagatedBuildInputs = [ attrs py setuptools six pluggy more-itertools atomicwrites]
     ++ (stdenv.lib.optional (!isPy3k) funcsigs)