Skip to content

Commit

Permalink
python312Packages.goslide-api: init at 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda committed Jan 3, 2025
1 parent aaadb7f commit 70d4b43
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/development/python-modules/goslide-api/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
setuptools,
}:

buildPythonPackage rec {
pname = "goslide-api";
version = "0.7.3";
pyproject = true;

src = fetchFromGitHub {
owner = "ualex73";
repo = "goslide-api";
tag = version;
hash = "sha256-s8MtOBNieg0o8U6pkf0e/EF8GtVkb7BgQBP6n/xmKJk=";
};

build-system = [ setuptools ];

dependencies = [ aiohttp ];

pythonImportsCheck = [ "goslideapi" ];

# upstream has no tests
doCheck = false;

meta = {
description = "Python API to utilise the Slide Open Cloud and Local API";
homepage = "https://github.com/ualex73/goslide-api";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5483,6 +5483,8 @@ self: super: with self; {

gorilla = callPackage ../development/python-modules/gorilla { };

goslide-api = callPackage ../development/python-modules/goslide-api { };

govee-ble = callPackage ../development/python-modules/govee-ble { };

govee-led-wez = callPackage ../development/python-modules/govee-led-wez { };
Expand Down

0 comments on commit 70d4b43

Please sign in to comment.