Merge pull request #114170 from fabaff/sharkiqpy

This commit is contained in:
Sandro 2021-02-25 00:56:22 +01:00 committed by GitHub
commit 31e113a56f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 1 deletions

View file

@ -0,0 +1,32 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "sharkiqpy";
version = "0.1.9";
src = fetchPypi {
inherit pname version;
sha256 = "0nk1nbplyk28qadxc7rydjvdgbz3za0xjg6c95l95mhiz453q5sw";
};
propagatedBuildInputs = [
aiohttp
requests
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "sharkiqpy" ];
meta = with lib; {
description = "Python API for Shark IQ robot";
homepage = "https://github.com/ajmarks/sharkiq";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -723,7 +723,7 @@
"sesame" = ps: with ps; [ ]; # missing inputs: pysesame2
"seven_segments" = ps: with ps; [ pillow ];
"seventeentrack" = ps: with ps; [ ]; # missing inputs: py17track
"sharkiq" = ps: with ps; [ ]; # missing inputs: sharkiqpy
"sharkiq" = ps: with ps; [ sharkiqpy ];
"shell_command" = ps: with ps; [ ];
"shelly" = ps: with ps; [ aioshelly ];
"shiftr" = ps: with ps; [ paho-mqtt ];

View file

@ -7241,6 +7241,8 @@ in {
sharedmem = callPackage ../development/python-modules/sharedmem { };
sharkiqpy = callPackage ../development/python-modules/sharkiqpy { };
sh = callPackage ../development/python-modules/sh { };
shellingham = callPackage ../development/python-modules/shellingham { };