Unverified Commit 57acf1c2 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

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

parents 5e7997d4 d619cbf7
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -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 ];
  };