Commit 67190d47 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.pyleri: 1.4.3 -> 1.5.0

parent 5eecbe3b
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -2,22 +2,19 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pythonOlder,
  unittestCheckHook,
  setuptools,
}:

buildPythonPackage rec {
  pname = "pyleri";
  version = "1.4.3";
  version = "1.5.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "cesbit";
    repo = "pyleri";
    tag = version;
    tag = "v${version}";
    hash = "sha256-4t+6wtYzJbmL0TB/OXr89uZ2s8DeGlUdWwHd4YPsCW0=";
  };

@@ -30,7 +27,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Module to parse SiriDB";
    homepage = "https://github.com/cesbit/pyleri";
    changelog = "https://github.com/cesbit/pyleri/releases/tag/${version}";
    changelog = "https://github.com/cesbit/pyleri/releases/tag/${src.tag}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };