python313Packages.sensorpush-ha init at 1.3.2
This commit is contained in:
parent
d8bed5f0c2
commit
f67ec8b4b4
41
pkgs/development/python-modules/sensorpush-ha/default.nix
Normal file
41
pkgs/development/python-modules/sensorpush-ha/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
pydantic,
|
||||
sensorpush-api,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sensorpush-ha";
|
||||
version = "1.3.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sstallion";
|
||||
repo = "sensorpush-ha";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-Gs6WprGscr9fiu78S0OY6624LA87Of7OWkNNnaWIxJk=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
pydantic
|
||||
sensorpush-api
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "sensorpush_ha" ];
|
||||
|
||||
# upstream has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/sstallion/sensorpush-ha/blob/${src.tag}/CHANGELOG.md";
|
||||
description = "SensorPush Cloud Home Assistant Library";
|
||||
homepage = "https://github.com/sstallion/sensorpush-ha";
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
||||
@ -14968,6 +14968,8 @@ self: super: with self; {
|
||||
|
||||
sensorpush-ble = callPackage ../development/python-modules/sensorpush-ble { };
|
||||
|
||||
sensorpush-ha = callPackage ../development/python-modules/sensorpush-ha { };
|
||||
|
||||
sensoterra = callPackage ../development/python-modules/sensoterra { };
|
||||
|
||||
sentencepiece = callPackage ../development/python-modules/sentencepiece {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user