3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #119179 from fabaff/sleepyq

This commit is contained in:
Sandro 2021-04-11 22:57:28 +02:00 committed by GitHub
commit 2915d20182
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 36 additions and 1 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, inflection
, requests
}:
buildPythonPackage rec {
pname = "sleepyq";
version = "0.8.1";
src = fetchPypi {
inherit pname version;
sha256 = "1bhzrxpzglfw4qbqfzyxr7dmmavzq4pq0h90jh0aa8vdw7iy7g7v";
};
propagatedBuildInputs = [
inflection
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "sleepyq" ];
meta = with lib; {
description = "Python module for SleepIQ API";
homepage = "https://github.com/technicalpickles/sleepyq";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -751,7 +751,7 @@
"skybeacon" = ps: with ps; [ ]; # missing inputs: pygatt[GATTTOOL]
"skybell" = ps: with ps; [ skybellpy ];
"slack" = ps: with ps; [ ]; # missing inputs: slackclient
"sleepiq" = ps: with ps; [ ]; # missing inputs: sleepyq
"sleepiq" = ps: with ps; [ sleepyq ];
"slide" = ps: with ps; [ ]; # missing inputs: goslide-api
"sma" = ps: with ps; [ pysma ];
"smappee" = ps: with ps; [ aiohttp-cors pysmappee ];

View file

@ -315,6 +315,7 @@ in with py.pkgs; buildPythonApplication rec {
"shopping_list"
"simplisafe"
"simulated"
"sleepiq"
"sma"
"sensor"
"smarttub"

View file

@ -7800,6 +7800,8 @@ in {
sleekxmpp = callPackage ../development/python-modules/sleekxmpp { };
sleepyq = callPackage ../development/python-modules/sleepyq { };
slicedimage = callPackage ../development/python-modules/slicedimage { };
slicer = callPackage ../development/python-modules/slicer { };