about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorValentin Heidelberger <github@valentinsblog.com>2018-01-17 16:40:10 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-01-20 11:38:57 +0100
commitfa8eb1cb46aea4231df528d6b0f1d6dea90240c9 (patch)
treee560f85cc4ff7bfa25a8ea54e6686ee212a06d28 /pkgs/development/python-modules
parent497e5183e5405b7aa9b1f6700d1552a9f47976d9 (diff)
downloadnixlib-fa8eb1cb46aea4231df528d6b0f1d6dea90240c9.tar
nixlib-fa8eb1cb46aea4231df528d6b0f1d6dea90240c9.tar.gz
nixlib-fa8eb1cb46aea4231df528d6b0f1d6dea90240c9.tar.bz2
nixlib-fa8eb1cb46aea4231df528d6b0f1d6dea90240c9.tar.lz
nixlib-fa8eb1cb46aea4231df528d6b0f1d6dea90240c9.tar.xz
nixlib-fa8eb1cb46aea4231df528d6b0f1d6dea90240c9.tar.zst
nixlib-fa8eb1cb46aea4231df528d6b0f1d6dea90240c9.zip
hypothesis: 3.11.1 -> 3.27.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/hypothesis/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/hypothesis/default.nix b/pkgs/development/python-modules/hypothesis/default.nix
index ab56cde9c131..91939d146887 100644
--- a/pkgs/development/python-modules/hypothesis/default.nix
+++ b/pkgs/development/python-modules/hypothesis/default.nix
@@ -1,6 +1,6 @@
 { stdenv, buildPythonPackage, fetchFromGitHub, python
 , pythonOlder, pythonAtLeast, enum34
-, doCheck ? true, pytest, pytest_xdist, flake8, flaky
+, doCheck ? true, pytest, pytest_xdist, flake8, flaky, mock
 }:
 buildPythonPackage rec {
   # http://hypothesis.readthedocs.org/en/latest/packaging.html
@@ -9,7 +9,7 @@ buildPythonPackage rec {
   # pytz fake_factory django numpy pytest
   # If you need these, you can just add them to your environment.
 
-  version = "3.11.1";
+  version = "3.27.0";
   pname = "hypothesis";
   name = "${pname}-${version}";
 
@@ -18,10 +18,10 @@ buildPythonPackage rec {
     owner = "HypothesisWorks";
     repo = "hypothesis-python";
     rev = "${version}";
-    sha256 = "0damf6zbm0db2a3gfwrbbj92yal576wpmhhchc0w0np8vdnax70n";
-  };
+    sha256 = "1lvhd8jrwajyc5w1alb9vinsi97fjfqpkxkh8g8j527831lig0j0";
+ };
 
-  checkInputs = stdenv.lib.optionals doCheck [ pytest pytest_xdist flake8 flaky ];
+  checkInputs = stdenv.lib.optionals doCheck [ pytest pytest_xdist flake8 flaky mock];
   propagatedBuildInputs = stdenv.lib.optionals (pythonOlder "3.4") [ enum34 ];
 
   inherit doCheck;
@@ -38,7 +38,7 @@ buildPythonPackage rec {
 
   meta = with stdenv.lib; {
     description = "A Python library for property based testing";
-    homepage = https://github.com/DRMacIver/hypothesis;
+    homepage = https://github.com/HypothesisWorks/hypothesis;
     license = licenses.mpl20;
   };
 }