Unverified Commit 54fe89e4 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.liccheck: 0.9.2 -> 0.9.3 (#436701)

parents b8de0d28 e47e0b8a
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
@@ -9,13 +9,14 @@
  python3-openid,
  pythonOlder,
  semantic-version,
  setuptools,
  toml,
}:

buildPythonPackage rec {
  pname = "liccheck";
  version = "0.9.2";
  format = "setuptools";
  version = "0.9.3";
  pyproject = true;

  disabled = pythonOlder "3.7";

@@ -23,10 +24,12 @@ buildPythonPackage rec {
    owner = "dhatim";
    repo = "python-license-check";
    tag = version;
    hash = "sha256-2WJw5TVMjOr+GX4YV0nssOtQeYvDHBLnlWquJQWPL9I=";
    hash = "sha256-ohq3ZsbZcyqhwmvaVF/+mo7lNde5gjbz8pwhzHi3SPY=";
  };

  propagatedBuildInputs = [
  build-system = [ setuptools ];

  dependencies = [
    configparser
    semantic-version
    toml
@@ -43,10 +46,10 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Check python packages from requirement.txt and report issues";
    mainProgram = "liccheck";
    homepage = "https://github.com/dhatim/python-license-check";
    changelog = "https://github.com/dhatim/python-license-check/releases/tag/${version}";
    changelog = "https://github.com/dhatim/python-license-check/releases/tag/${src.tag}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
    mainProgram = "liccheck";
  };
}