Files
nixpkgs/pkgs/development/python-modules/hypothesis/default.nix
T

45 lines
1.4 KiB
Nix
Raw Normal View History

2017-01-30 21:15:56 +01:00
{ stdenv, buildPythonPackage, fetchFromGitHub, python
2017-03-14 10:49:39 +01:00
, pythonOlder, pythonAtLeast, enum34
, doCheck ? true, pytest, pytest_xdist, flake8, flaky
2017-01-30 21:15:56 +01: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 18:11:22 +02:00
version = "3.11.1";
2017-05-27 11:25:35 +02:00
pname = "hypothesis";
name = "${pname}-${version}";
2017-01-30 21:15:56 +01:00
# Upstream prefers github tarballs
src = fetchFromGitHub {
owner = "HypothesisWorks";
2017-05-27 14:24:47 +02:00
repo = "hypothesis-python";
2017-01-30 21:15:56 +01:00
rev = "${version}";
2017-06-02 08:44:31 +02:00
sha256 = "0damf6zbm0db2a3gfwrbbj92yal576wpmhhchc0w0np8vdnax70n";
2017-01-30 21:15:56 +01:00
};
checkInputs = stdenv.lib.optionals doCheck [ pytest pytest_xdist flake8 flaky ];
propagatedBuildInputs = stdenv.lib.optionals (pythonOlder "3.4") [ enum34 ];
2017-01-30 21:15:56 +01:00
inherit doCheck;
# https://github.com/DRMacIver/hypothesis/issues/300
checkPhase = ''
2017-05-28 08:34:46 +02:00
rm tox.ini # This file changes how py.test runs and breaks it
2017-05-27 14:24:47 +02:00
py.test tests/cover
2017-01-30 21:15:56 +01:00
'';
2017-03-14 10:49:39 +01: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 21:15:56 +01:00
meta = with stdenv.lib; {
description = "A Python library for property based testing";
homepage = https://github.com/DRMacIver/hypothesis;
license = licenses.mpl20;
};
}