587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
76 lines
1.7 KiB
Nix
76 lines
1.7 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
|
|
# build
|
|
, setuptools
|
|
|
|
# runtime
|
|
, packaging
|
|
, typing-extensions
|
|
|
|
# tests
|
|
, pytest-timeout
|
|
, pytest7CheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lightning-utilities";
|
|
version = "0.10.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Lightning-AI";
|
|
repo = "utilities";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-kP7BllA9FR/nMNTxRCxmG6IJYHz/Nxqb1HoF9KxuKl8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
packaging
|
|
typing-extensions
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"lightning_utilities"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-timeout
|
|
pytest7CheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
"lightning_utilities.core.enums.StrEnum"
|
|
"lightning_utilities.core.imports.RequirementCache"
|
|
"lightning_utilities.core.imports.compare_version"
|
|
"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"
|
|
"lightning_utilities.core.imports.requires"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"docs"
|
|
# doctests that expect docs.txt in the wrong location
|
|
"src/lightning_utilities/install/requirements.py"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
# warns about distutils removal in python 3.12
|
|
"-W" "ignore::DeprecationWarning"
|
|
];
|
|
|
|
meta = with lib; {
|
|
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 = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|