blob: 32ff65a3914480b0b23076daa5f80f65092ff61f (
plain) (
blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
colorama,
hypothesis,
poetry-core,
setuptools,
pylama,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "isort";
version = "5.13.2";
format = "pyproject";
src = fetchFromGitHub {
owner = "PyCQA";
repo = "isort";
rev = "refs/tags/${version}";
hash = "sha256-/1iKYmtNRw9u59zzJDwV7b9+EPxFJDHvhjTioGt5LLU=";
};
nativeBuildInputs = [
poetry-core
setuptools
];
nativeCheckInputs = [
colorama
hypothesis
pylama
pytestCheckHook
];
postCheck = ''
# Confirm that the produced executable script is wrapped correctly and runs
# OK, by launching it in a subshell without PYTHONPATH
(
unset PYTHONPATH
echo "Testing that `isort --version-number` returns OK..."
$out/bin/isort --version-number
)
'';
preCheck = ''
HOME=$TMPDIR
export PATH=$PATH:$out/bin
'';
pytestFlagsArray = [
"--ignore=tests/benchmark/" # requires pytest-benchmark
"--ignore=tests/integration/" # pulls in 10 other packages
"--ignore=tests/unit/profiles/test_black.py" # causes infinite recursion to include black
];
disabledTests = [
"test_run" # doesn't like paths in /build
"test_fuzz_show_unified_diff" # flakey
"test_pyi_formatting_issue_942"
"test_requirements_finder"
"test_pipfile_finder"
"test_main" # relies on git
"test_command_line" # not thread safe
"test_encoding_not_in_comment" # not python 3.9 compatible
"test_encoding_not_in_first_two_lines" # not python 3.9 compatible
"test_requirements_dir" # requires network
# plugin not available
"test_isort_literals_issue_1358"
"test_isort_supports_formatting_plugins_issue_1353"
"test_sort_configurable_sort_issue_1732"
"test_value_assignment_list"
# profiles not available
"test_isort_supports_shared_profiles_issue_970"
# https://github.com/PyCQA/isort/issues/2234
"test_isort_should_warn_on_empty_custom_config_issue_1433"
];
meta = with lib; {
description = "Python utility / library to sort Python imports";
homepage = "https://github.com/PyCQA/isort";
license = licenses.mit;
maintainers = with maintainers; [ couchemar ];
mainProgram = "isort";
};
}
|