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

41 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub
2018-02-12 11:02:07 +01:00
, isPy3k, attrs, coverage, enum34
, doCheck ? true, pytest, pytest_xdist, flaky, mock
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.
2018-07-19 17:36:05 +01:00
version = "3.66.2";
2017-05-27 11:25:35 +02:00
pname = "hypothesis";
2017-01-30 21:15:56 +01:00
2018-07-19 17:36:05 +01:00
# Use github tarballs that includes tests
2017-01-30 21:15:56 +01:00
src = fetchFromGitHub {
owner = "HypothesisWorks";
2017-05-27 14:24:47 +02:00
repo = "hypothesis-python";
2018-07-19 17:36:05 +01:00
rev = "hypothesis-python-${version}";
sha256 = "17ywbwa76z7f0pgash0003fvm25fsj7hxdrdiprdbv99y3i8bm88";
2018-02-12 11:02:07 +01:00
};
2017-01-30 21:15:56 +01:00
2018-07-19 17:36:05 +01:00
postUnpack = "sourceRoot=$sourceRoot/hypothesis-python";
2018-02-12 11:02:07 +01:00
propagatedBuildInputs = [ attrs coverage ] ++ lib.optional (!isPy3k) [ enum34 ];
2017-01-30 21:15:56 +01:00
checkInputs = [ pytest pytest_xdist flaky mock ];
2017-01-30 21:15:56 +01:00
inherit doCheck;
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
'';
2018-02-12 11:02:07 +01:00
meta = with lib; {
2017-01-30 21:15:56 +01:00
description = "A Python library for property based testing";
2018-01-17 16:40:10 +01:00
homepage = https://github.com/HypothesisWorks/hypothesis;
2017-01-30 21:15:56 +01:00
license = licenses.mpl20;
};
}