mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #170114 from fabaff/bump-pysensibo
python3Packages.pysensibo: init at 1.0.12
This commit is contained in:
commit
36aa108da8
3 changed files with 44 additions and 1 deletions
39
pkgs/development/python-modules/pysensibo/default.nix
Normal file
39
pkgs/development/python-modules/pysensibo/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pysensibo";
|
||||||
|
version = "1.0.12";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "andrey-git";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-gXdyVEBcYCUOo8PHzsJLkjtnX1B1iRS/DAxdQDU3HaY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
# no tests implemented
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"pysensibo"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Module for interacting with Sensibo";
|
||||||
|
homepage = "https://github.com/andrey-git/pysensibo";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2292,7 +2292,8 @@
|
||||||
aiosenseme
|
aiosenseme
|
||||||
];
|
];
|
||||||
"sensibo" = ps: with ps; [
|
"sensibo" = ps: with ps; [
|
||||||
]; # missing inputs: pysensibo
|
pysensibo
|
||||||
|
];
|
||||||
"sensor" = ps: with ps; [
|
"sensor" = ps: with ps; [
|
||||||
fnvhash
|
fnvhash
|
||||||
lru-dict
|
lru-dict
|
||||||
|
@ -3569,6 +3570,7 @@
|
||||||
"select"
|
"select"
|
||||||
"sense"
|
"sense"
|
||||||
"senseme"
|
"senseme"
|
||||||
|
"sensibo"
|
||||||
"sensor"
|
"sensor"
|
||||||
"sentry"
|
"sentry"
|
||||||
"seventeentrack"
|
"seventeentrack"
|
||||||
|
|
|
@ -7747,6 +7747,8 @@ in {
|
||||||
|
|
||||||
pysendfile = callPackage ../development/python-modules/pysendfile { };
|
pysendfile = callPackage ../development/python-modules/pysendfile { };
|
||||||
|
|
||||||
|
pysensibo = callPackage ../development/python-modules/pysensibo { };
|
||||||
|
|
||||||
pysensors = callPackage ../development/python-modules/pysensors { };
|
pysensors = callPackage ../development/python-modules/pysensors { };
|
||||||
|
|
||||||
pyserial-asyncio = callPackage ../development/python-modules/pyserial-asyncio { };
|
pyserial-asyncio = callPackage ../development/python-modules/pyserial-asyncio { };
|
||||||
|
|
Loading…
Reference in a new issue