python3Packages.sleepyq: init at 0.8.1

This commit is contained in:
Fabian Affolter 2021-04-11 19:00:53 +02:00
parent 089908b9db
commit b3fe64070f
2 changed files with 34 additions and 0 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

@ -7786,6 +7786,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 { };