python311Packages.spdx-tools: set version

- switch to GitHub source
- add myself as maintainer
This commit is contained in:
Fabian Affolter
2023-08-14 09:28:54 +02:00
parent f4c11b8088
commit 77d5156aa3
@@ -1,31 +1,42 @@
{ lib
, buildPythonPackage
, beartype
, buildPythonPackage
, click
, fetchPypi
, fetchFromGitHub
, license-expression
, pyyaml
, rdflib
, ply
, semantic-version
, xmltodict
, pytestCheckHook
, pythonOlder
, pyyaml
, rdflib
, semantic-version
, setuptools
, setuptools-scm
, uritools
, xmltodict
}:
buildPythonPackage rec {
pname = "spdx-tools";
version = "0.8.0";
format = "setuptools";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-ZoCb94eDtHFH3K9ppju51WHrReay7BXC6P4VUOJK4c0=";
src = fetchFromGitHub {
owner = "spdx";
repo = "tools-python";
rev = "refs/tags/v${version}";
hash = "sha256-TMiaxapJuiLqm+x9K49MIzeWOE/CRAI+M1+9OeU0YvM=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
beartype
click
@@ -47,15 +58,21 @@ buildPythonPackage rec {
];
disabledTestPaths = [
# Depends on the currently not packaged pyshacl module.
# Test depends on the currently not packaged pyshacl module
"tests/spdx3/validation/json_ld/test_shacl_validation.py"
];
disabledTests = [
# Missing files
"test_spdx2_convert_to_spdx3"
"test_json_writer"
];
meta = with lib; {
description = "SPDX parser and tools";
homepage = "https://github.com/spdx/tools-python";
changelog = "https://github.com/spdx/tools-python/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = [ ];
maintainers = with maintainers; [ fab ];
};
}