Unverified Commit 2729420e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.limnoria: 2025.11.2 -> 2026.1.16 (#480898)

parents 531f255a 8e6b424e
Loading
Loading
Loading
Loading
+12 −13
Original line number Diff line number Diff line
@@ -11,20 +11,24 @@
  pytestCheckHook,
  python-dateutil,
  python-gnupg,
  pythonOlder,
  pytz,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "limnoria";
  version = "2025.11.2";
  version = "2026.1.16";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-cvlp1cfsdN8lv8hFvaHV6vtWEJ0CJUBmN1yCgxrhMi8=";
    inherit (finalAttrs) pname version;
    hash = "sha256-ZkEXZMjJsEgSwX2a8TwaQ/vtvskSOFwNBZg/Ru5q/bc=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace-fail "version=version" 'version="${finalAttrs.version}"'
  '';

  build-system = [ setuptools ];

  dependencies = [
@@ -35,16 +39,10 @@ buildPythonPackage rec {
    pysocks
    python-dateutil
    python-gnupg
  ]
  ++ lib.optionals (pythonOlder "3.9") [ pytz ];
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  postPatch = ''
    substituteInPlace setup.py \
      --replace-fail "version=version" 'version="${version}"'
  '';

  checkPhase = ''
    runHook preCheck
    export PATH="$PATH:$out/bin";
@@ -60,7 +58,8 @@ buildPythonPackage rec {
  meta = {
    description = "Modified version of Supybot, an IRC bot";
    homepage = "https://github.com/ProgVal/Limnoria";
    changelog = "https://github.com/progval/Limnoria/releases/tag/master-${finalAttrs.version}";
    license = lib.licenses.bsd3;
    maintainers = [ ];
  };
}
})