depot/third_party/nixpkgs/pkgs/development/python-modules/importlib-resources/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

60 lines
974 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
# build-system
, setuptools
, setuptools-scm
# dependencies
, importlib-metadata
# Reverse dependency
, sage
# tests
, jaraco-collections
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "importlib-resources";
version = "6.3.2";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "importlib_resources";
inherit version;
hash = "sha256-lj63lkklKwFgwa/P5aHT/jrWbt0KixFL6s/7cMBnQiM=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
importlib-metadata
];
nativeCheckInputs = [
pytestCheckHook
jaraco-collections
];
pythonImportsCheck = [
"importlib_resources"
];
passthru.tests = { inherit sage; };
meta = with lib; {
description = "Read resources from Python packages";
homepage = "https://importlib-resources.readthedocs.io/";
license = licenses.asl20;
maintainers = [ ];
};
}