about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hypothesis.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-04-18 09:16:05 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-04-18 11:33:22 +0200
commita9cbac6322e0b7c0795dc9633b861ee68761ebe8 (patch)
tree8ff7786ebbb7320db00b8db2e2a85d32b8b3bf47 /pkgs/development/python-modules/hypothesis.nix
parenta697985e37b8a8d7c0c1db2f59b0e744ec9c0941 (diff)
downloadnixlib-a9cbac6322e0b7c0795dc9633b861ee68761ebe8.tar
nixlib-a9cbac6322e0b7c0795dc9633b861ee68761ebe8.tar.gz
nixlib-a9cbac6322e0b7c0795dc9633b861ee68761ebe8.tar.bz2
nixlib-a9cbac6322e0b7c0795dc9633b861ee68761ebe8.tar.lz
nixlib-a9cbac6322e0b7c0795dc9633b861ee68761ebe8.tar.xz
nixlib-a9cbac6322e0b7c0795dc9633b861ee68761ebe8.tar.zst
nixlib-a9cbac6322e0b7c0795dc9633b861ee68761ebe8.zip
pythonPackages.hypothesis: 3.6.1 -> 3.7.0
Diffstat (limited to 'pkgs/development/python-modules/hypothesis.nix')
-rw-r--r--pkgs/development/python-modules/hypothesis.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/hypothesis.nix b/pkgs/development/python-modules/hypothesis.nix
index 271251b830e1..d5251f1fa55a 100644
--- a/pkgs/development/python-modules/hypothesis.nix
+++ b/pkgs/development/python-modules/hypothesis.nix
@@ -10,14 +10,14 @@ buildPythonPackage rec {
   # If you need these, you can just add them to your environment.
 
   name = "hypothesis-${version}";
-  version = "3.6.1";
+  version = "3.7.0";
 
   # Upstream prefers github tarballs
   src = fetchFromGitHub {
     owner = "HypothesisWorks";
     repo = "hypothesis";
     rev = "${version}";
-    sha256 = "1zwr9g4h4jizbvm2d7fywdpcxmw8i1m85h8g72kizah07gk12aq1";
+    sha256 = "1zsv1ggf3g9rrigxl3zd1z8qc6fcj8lmszm8ib1ya4ar6r64x0yz";
   };
 
   buildInputs = stdenv.lib.optionals doCheck [ pytest flake8 flaky ];