blob: b837fbb7af4414a1992bdfc88b446980e8041b30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wheel,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "xdoctest";
version = "1.3.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Erotemic";
repo = "xdoctest";
tag = "v${version}";
hash = "sha256-kxisUcpfAxhB7wd2QLY5jkoUXXDYrkJx7bNB1wMVB30=";
};
nativeBuildInputs = [
setuptools
wheel
];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
export HOME=$TMPDIR
export PATH=$out/bin:$PATH
'';
pythonImportsCheck = [ "xdoctest" ];
meta = {
description = "Rewrite of Python's builtin doctest module (with pytest plugin integration) with AST instead of REGEX";
homepage = "https://github.com/Erotemic/xdoctest";
changelog = "https://github.com/Erotemic/xdoctest/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ natsukium ];
mainProgram = "xdoctest";
};
}
|