2018-07-20 17:44:44 -07:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub
|
2018-02-12 02:02:07 -08:00
|
|
|
, isPy3k, attrs, coverage, enum34
|
2018-07-20 17:44:44 -07:00
|
|
|
, doCheck ? true, pytest, pytest_xdist, flaky, mock
|
2017-01-30 12:15:56 -08:00
|
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
2019-04-22 01:24:21 -07:00
|
|
|
# https://hypothesis.readthedocs.org/en/latest/packaging.html
|
2017-01-30 12:15:56 -08:00
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
2019-03-24 01:36:24 -07:00
|
|
|
version = "4.7.3";
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "hypothesis";
|
2017-01-30 12:15:56 -08:00
|
|
|
|
2018-07-19 09:36:05 -07:00
|
|
|
# Use github tarballs that includes tests
|
2017-01-30 12:15:56 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "HypothesisWorks";
|
2017-05-27 05:24:47 -07:00
|
|
|
repo = "hypothesis-python";
|
2018-07-19 09:36:05 -07:00
|
|
|
rev = "hypothesis-python-${version}";
|
2019-02-22 09:24:07 -08:00
|
|
|
sha256 = "03l4hp0p7i2k04arnqkav0ygc23ml46dy3cfrlwviasrj7yzk5hc";
|
2018-02-12 02:02:07 -08:00
|
|
|
};
|
2017-01-30 12:15:56 -08:00
|
|
|
|
2018-07-19 09:36:05 -07:00
|
|
|
postUnpack = "sourceRoot=$sourceRoot/hypothesis-python";
|
|
|
|
|
2018-02-12 02:02:07 -08:00
|
|
|
propagatedBuildInputs = [ attrs coverage ] ++ lib.optional (!isPy3k) [ enum34 ];
|
2017-01-30 12:15:56 -08:00
|
|
|
|
2018-03-29 17:01:53 -07:00
|
|
|
checkInputs = [ pytest pytest_xdist flaky mock ];
|
2017-01-30 12:15:56 -08:00
|
|
|
inherit doCheck;
|
|
|
|
|
|
|
|
checkPhase = ''
|
2017-05-27 23:34:46 -07:00
|
|
|
rm tox.ini # This file changes how py.test runs and breaks it
|
2017-05-27 05:24:47 -07:00
|
|
|
py.test tests/cover
|
2017-01-30 12:15:56 -08:00
|
|
|
'';
|
|
|
|
|
2018-02-12 02:02:07 -08:00
|
|
|
meta = with lib; {
|
2017-01-30 12:15:56 -08:00
|
|
|
description = "A Python library for property based testing";
|
2018-01-17 07:40:10 -08:00
|
|
|
homepage = https://github.com/HypothesisWorks/hypothesis;
|
2017-01-30 12:15:56 -08:00
|
|
|
license = licenses.mpl20;
|
|
|
|
};
|
|
|
|
}
|