tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.pytest-doctestplus: 0.11.2 -> 0.12.1
Fabian Affolter
3 years ago
277bd868
ced197be
+2
-12
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pytest-doctestplus
default.nix
+2
-12
pkgs/development/python-modules/pytest-doctestplus/default.nix
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
-
, fetchpatch
4
3
, fetchPypi
5
4
, packaging
6
5
, pytest
···
11
10
12
11
buildPythonPackage rec {
13
12
pname = "pytest-doctestplus";
14
14
-
version = "0.11.2";
13
13
+
version = "0.12.1";
15
14
format = "setuptools";
16
15
17
16
disabled = pythonOlder "3.7";
18
17
19
18
src = fetchPypi {
20
19
inherit pname version;
21
21
-
sha256 = "f393adf659709a5f111d6ca190871c61808a6f3611bd0a132e27e93b24dd3448";
20
20
+
hash = "sha256-epeeS+mdkRbgesBmxfANRfOHZ319d5877zDG/6jHkYE=";
22
21
};
23
22
24
23
nativeBuildInputs = [
···
35
34
36
35
checkInputs = [
37
36
pytestCheckHook
38
38
-
];
39
39
-
40
40
-
patches = [
41
41
-
# Removal of distutils, https://github.com/astropy/pytest-doctestplus/pull/172
42
42
-
(fetchpatch {
43
43
-
name = "distutils-removal.patch";
44
44
-
url = "https://github.com/astropy/pytest-doctestplus/commit/ae2ee14cca0cde0fab355936995fa083529b00ff.patch";
45
45
-
sha256 = "sha256-uryKV7bWw2oz0glyh2lpGqtDPFvRTo8RmI1N1n15/d4=";
46
46
-
})
47
37
];
48
38
49
39
disabledTests = [