Unverified Commit 0cfc14a4 authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

python3Packages.oelint-data: 1.3.0 -> 1.3.3 (#478719)

parents 73701f6b 68dbcf14
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -6,16 +6,16 @@
  oelint-parser,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "oelint-data";
  version = "1.3.0";
  version = "1.3.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "priv-kweihmann";
    repo = "oelint-data";
    tag = version;
    hash = "sha256-+QavuUIj6aKaxIp0NPj0doKV/+SL7bh5LaH1TLe/LZ4=";
    tag = finalAttrs.version;
    hash = "sha256-5eEhr2Jt6Ucco1/3zMGSq5SNcco8FMdJn583qBJmxk0=";
  };

  build-system = [
@@ -34,8 +34,8 @@ buildPythonPackage rec {
  meta = {
    description = "Data for oelint-adv";
    homepage = "https://github.com/priv-kweihmann/oelint-data";
    changelog = "https://github.com/priv-kweihmann/oelint-data/releases/tag/${src.tag}";
    changelog = "https://github.com/priv-kweihmann/oelint-data/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.bsd2;
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}
})