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

python3Packages.aiopvapi: 3.2.1 -> 3.3.0 (#462035)

parents 2c3407c2 d694391d
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -4,22 +4,19 @@
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "aiopvapi";
  version = "3.2.1";
  version = "3.3.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "sander76";
    repo = "aio-powerview-api";
    tag = "v${version}";
    hash = "sha256-DBpu1vjK0uYwXF1fbbdoeqCd3a6VdeClhsTGkbf8o7U=";
    hash = "sha256-yystaH2HRsJoYh2aTpOBA7DLiC2xwpBUccHwmJ0FlaY=";
  };

  build-system = [ setuptools ];
@@ -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 ];
  };
}