python312Packages.license-expression: 30.3.1 -> 30.4.0 (#351210)

This commit is contained in:
OTABI Tomoya 2024-10-30 10:38:09 +09:00 committed by GitHub
commit 57acf1c208
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,16 +10,16 @@
buildPythonPackage rec {
pname = "license-expression";
version = "30.3.1";
version = "30.4.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "nexB";
owner = "aboutcode-org";
repo = "license-expression";
rev = "refs/tags/v${version}";
hash = "sha256-+hINYDfUrNsCmXOIa4XO/ML1fJoB8/n6iQ4UGdw5ClE=";
hash = "sha256-RAgGg0Xekcw5H13YHmkgfL7eybK+4tA8EAvVTuWFRck=";
};
dontConfigure = true;
@ -34,8 +34,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Utility library to parse, normalize and compare License expressions";
homepage = "https://github.com/nexB/license-expression";
changelog = "https://github.com/nexB/license-expression/blob/v${version}/CHANGELOG.rst";
homepage = "https://github.com/aboutcode-org/license-expression";
changelog = "https://github.com/aboutcode-org/license-expression/blob/v${version}/CHANGELOG.rst";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};