blob: 5e9fe3aa8ab2661b0419235a0a873bc903385e42 (
about) (
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
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
jsonargparse,
looseversion,
packaging,
tomlkit,
typing-extensions,
# tests
pytest-timeout,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "lightning-utilities";
version = "0.15.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Lightning-AI";
repo = "utilities";
tag = "v${version}";
hash = "sha256-GQVd81PHtAY9nr+YSVQli91AxbXSQFH0IALcZBMiu5o=";
};
postPatch = ''
substituteInPlace src/lightning_utilities/install/requirements.py \
--replace-fail "from distutils.version import LooseVersion" "from looseversion import LooseVersion"
'';
build-system = [ setuptools ];
dependencies = [
jsonargparse
looseversion
packaging
tomlkit
typing-extensions
];
pythonImportsCheck = [ "lightning_utilities" ];
nativeCheckInputs = [
pytest-timeout
pytestCheckHook
];
disabledTests = [
# DocTestFailure
"lightning_utilities.core.imports.RequirementCache"
# NameError: name 'operator' is not defined. Did you forget to import 'operator'
"lightning_utilities.core.imports.compare_version"
# importlib.metadata.PackageNotFoundError: No package metadata was found for pytorch-lightning==1.8.0
"lightning_utilities.core.imports.get_dependency_min_version_spec"
# weird doctests fail on imports, but providing the dependency
# fails another test
"lightning_utilities.core.imports.ModuleAvailableCache"
];
disabledTestPaths = [
"docs"
# doctests that expect docs.txt in the wrong location
"src/lightning_utilities/install/requirements.py"
];
meta = {
changelog = "https://github.com/Lightning-AI/utilities/releases/tag/v${version}";
description = "Common Python utilities and GitHub Actions in Lightning Ecosystem";
homepage = "https://github.com/Lightning-AI/utilities";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
|