15 buildPythonPackage rec {
16 pname = "pytest-doctestplus";
20 disabled = pythonOlder "3.7";
23 inherit pname version;
24 hash = "sha256-JHKoosjOo00vZfZJlUP663SO7LWcWXhS/ZiDm0cwdnk=";
28 substituteInPlace pytest_doctestplus/plugin.py \
29 --replace-fail '"git"' '"${lib.getExe gitMinimal}"'
32 nativeBuildInputs = [ setuptools-scm ];
34 buildInputs = [ pytest ];
36 propagatedBuildInputs = [
47 # ERROR: usage: __main__.py [options] [file_or_dir] [file_or_dir] [...]
48 # __main__.py: error: unrecognized arguments: --remote-data
49 "test_remote_data_url"
50 "test_remote_data_float_cmp"
51 "test_remote_data_ignore_whitespace"
52 "test_remote_data_ellipsis"
53 "test_remote_data_requires"
54 "test_remote_data_ignore_warnings"
58 description = "Pytest plugin with advanced doctest features";
59 homepage = "https://astropy.org";
60 license = licenses.bsd3;