mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
python3Packages.aioaquarite: init at 0.6.1
This commit is contained in:
43
pkgs/development/python-modules/aioaquarite/default.nix
Normal file
43
pkgs/development/python-modules/aioaquarite/default.nix
Normal file
@@ -0,0 +1,43 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
aiohttp,
|
||||
google-auth,
|
||||
google-cloud-firestore,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "aioaquarite";
|
||||
version = "0.6.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fdebrus";
|
||||
repo = "aioaquarite";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-pf/a0W1Ix/3Cd6dMUvHqb6DwT56PvtSf/GpicrL8y1A=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
aiohttp
|
||||
google-auth
|
||||
google-cloud-firestore
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "aioaquarite" ];
|
||||
|
||||
meta = {
|
||||
description = "Async Python client for the Hayward Aquarite pool API";
|
||||
homepage = "https://github.com/fdebrus/aioaquarite";
|
||||
changelog = "https://github.com/fdebrus/aioaquarite/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
})
|
||||
@@ -216,6 +216,8 @@ self: super: with self; {
|
||||
|
||||
aioaquacell = callPackage ../development/python-modules/aioaquacell { };
|
||||
|
||||
aioaquarite = callPackage ../development/python-modules/aioaquarite { };
|
||||
|
||||
aioaseko = callPackage ../development/python-modules/aioaseko { };
|
||||
|
||||
aioasuswrt = callPackage ../development/python-modules/aioasuswrt { };
|
||||
|
||||
Reference in New Issue
Block a user