about summary refs log tree commit diff
path: root/pkgs/development/python-modules/importlib-resources/default.nix
blob: 1f4b01a41992721e820e025751088db9bd427e99 (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
{ 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 = [ ];
  };
}