about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/spdx-tools/default.nix
blob: 53d6d51d2d280d754cdc9173936d8d42226669d6 (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
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, six
, pyyaml
, rdflib
, ply
, xmltodict
, pytestCheckHook
, pythonAtLeast
}:
buildPythonPackage rec {
  pname = "spdx-tools";
  version = "0.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9a1aaae051771e865705dd2fd374c3f73d0ad595c1056548466997551cbd7a81";
  };

  patches = lib.optionals (pythonAtLeast "3.9") [
    # https://github.com/spdx/tools-python/pull/159
    # fixes tests on Python 3.9
    (fetchpatch {
      name = "drop-encoding-argument.patch";
      url = "https://github.com/spdx/tools-python/commit/6c8b9a852f8a787122c0e2492126ee8aa52acff0.patch";
      sha256 = "RhvLhexsQRjqYqJg10SAM53RsOW+R93G+mns8C9g5E8=";
    })
  ];

  propagatedBuildInputs = [
    six
    pyyaml
    rdflib
    ply
    xmltodict
  ];

  checkInputs = [
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "spdx"
  ];

  meta = with lib; {
    description = "SPDX parser and tools";
    homepage = "https://github.com/spdx/tools-python";
    license = licenses.asl20;
    maintainers = teams.determinatesystems.members;
  };
}