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

python313Packages.aiopvapi: modernize

parent 778b4241
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  pythonOlder,
  setuptools,
}:

@@ -13,8 +12,6 @@ buildPythonPackage rec {
  version = "3.3.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "sander76";
    repo = "aio-powerview-api";
@@ -38,8 +35,8 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python API for the PowerView API";
    homepage = "https://github.com/sander76/aio-powerview-api";
    changelog = "https://github.com/sander76/aio-powerview-api/releases/tag/v${version}";
    license = with licenses; [ bsd3 ];
    changelog = "https://github.com/sander76/aio-powerview-api/releases/tag/${src.tag}";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fab ];
  };
}