python3Packages.pyaussiebb: init at 0.0.9

This commit is contained in:
Fabian Affolter 2022-02-03 09:24:56 +01:00
parent 2f1a52c873
commit 3f76c7d11a
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, loguru
, requests
}:
buildPythonPackage rec {
pname = "pyaussiebb";
version = "0.0.9";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "yaleman";
repo = "aussiebb";
rev = "v${version}";
hash = "sha256-DMU29dTqDaPLQS20iuHIph6mhBdj6ni3+MA9KkRMtzg=";
};
propagatedBuildInputs = [
aiohttp
requests
loguru
];
# Tests require network access
# https://github.com/yaleman/aussiebb/issues/6
doCheck = false;
pythonImportsCheck = [
"aussiebb"
];
meta = with lib; {
description = "Module for interacting with the Aussie Broadband APIs";
homepage = "https://github.com/yaleman/aussiebb";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -6536,6 +6536,8 @@ in {
pyaudio = callPackage ../development/python-modules/pyaudio { };
pyaussiebb = callPackage ../development/python-modules/pyaussiebb { };
pyautogui = callPackage ../development/python-modules/pyautogui { };
pyavm = callPackage ../development/python-modules/pyavm { };