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