2017-01-30 23:15:56 +03:00
|
|
|
{ stdenv, buildPythonPackage, fetchFromGitHub, python
|
2017-03-14 12:49:39 +03:00
|
|
|
, pythonOlder, pythonAtLeast, enum34
|
2017-05-29 04:00:50 +03:00
|
|
|
, doCheck ? true, pytest, pytest_xdist, flake8, flaky
|
2017-01-30 23:15:56 +03:00
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
|
|
# http://hypothesis.readthedocs.org/en/latest/packaging.html
|
|
|
|
|
|
|
|
# Hypothesis has optional dependencies on the following libraries
|
|
|
|
# pytz fake_factory django numpy pytest
|
|
|
|
# If you need these, you can just add them to your environment.
|
|
|
|
|
2017-06-01 19:11:22 +03:00
|
|
|
version = "3.11.1";
|
2017-05-27 12:25:35 +03:00
|
|
|
pname = "hypothesis";
|
|
|
|
name = "${pname}-${version}";
|
2017-01-30 23:15:56 +03:00
|
|
|
|
|
|
|
# Upstream prefers github tarballs
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "HypothesisWorks";
|
2017-05-27 15:24:47 +03:00
|
|
|
repo = "hypothesis-python";
|
2017-01-30 23:15:56 +03:00
|
|
|
rev = "${version}";
|
2017-06-02 09:44:31 +03:00
|
|
|
sha256 = "0damf6zbm0db2a3gfwrbbj92yal576wpmhhchc0w0np8vdnax70n";
|
2017-01-30 23:15:56 +03:00
|
|
|
};
|
|
|
|
|
2017-05-29 04:00:50 +03:00
|
|
|
checkInputs = stdenv.lib.optionals doCheck [ pytest pytest_xdist flake8 flaky ];
|
2017-03-13 16:42:10 +03:00
|
|
|
propagatedBuildInputs = stdenv.lib.optionals (pythonOlder "3.4") [ enum34 ];
|
2017-01-30 23:15:56 +03:00
|
|
|
|
|
|
|
inherit doCheck;
|
|
|
|
|
|
|
|
# https://github.com/DRMacIver/hypothesis/issues/300
|
|
|
|
checkPhase = ''
|
2017-05-28 09:34:46 +03:00
|
|
|
rm tox.ini # This file changes how py.test runs and breaks it
|
2017-05-27 15:24:47 +03:00
|
|
|
py.test tests/cover
|
2017-01-30 23:15:56 +03:00
|
|
|
'';
|
|
|
|
|
2017-03-14 12:49:39 +03:00
|
|
|
# Unsupport by upstream on certain versions
|
|
|
|
# https://github.com/HypothesisWorks/hypothesis-python/issues/477
|
|
|
|
disabled = pythonOlder "3.4" && pythonAtLeast "2.8";
|
|
|
|
|
2017-01-30 23:15:56 +03:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A Python library for property based testing";
|
|
|
|
homepage = https://github.com/DRMacIver/hypothesis;
|
|
|
|
license = licenses.mpl20;
|
|
|
|
};
|
|
|
|
}
|