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

python313Packages.pylitterbot: modernize

parent ca0411c2
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -12,7 +12,6 @@
  pytest-aiohttp,
  pytest-freezegun,
  pytestCheckHook,
  pythonOlder,
}:

buildPythonPackage rec {
@@ -20,8 +19,6 @@ buildPythonPackage rec {
  version = "2024.2.6";
  pyproject = true;

  disabled = pythonOlder "3.10";

  src = fetchFromGitHub {
    owner = "natekspencer";
    repo = "pylitterbot";
@@ -52,11 +49,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "pylitterbot" ];

  meta = with lib; {
  meta = {
    description = "Modulefor controlling a Litter-Robot";
    homepage = "https://github.com/natekspencer/pylitterbot";
    changelog = "https://github.com/natekspencer/pylitterbot/releases/tag/${src.tag}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}