Merge pull request #114170 from fabaff/sharkiqpy
This commit is contained in:
commit
31e113a56f
3 changed files with 35 additions and 1 deletions
32
pkgs/development/python-modules/sharkiqpy/default.nix
Normal file
32
pkgs/development/python-modules/sharkiqpy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 ];
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue