python3Packages.sharkiqpy: init at 0.1.9
This commit is contained in:
parent
b1efbc6aa3
commit
94c9508de6
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -7233,6 +7233,8 @@ in {
|
|||||||
|
|
||||||
sharedmem = callPackage ../development/python-modules/sharedmem { };
|
sharedmem = callPackage ../development/python-modules/sharedmem { };
|
||||||
|
|
||||||
|
sharkiqpy = callPackage ../development/python-modules/sharkiqpy { };
|
||||||
|
|
||||||
sh = callPackage ../development/python-modules/sh { };
|
sh = callPackage ../development/python-modules/sh { };
|
||||||
|
|
||||||
shellingham = callPackage ../development/python-modules/shellingham { };
|
shellingham = callPackage ../development/python-modules/shellingham { };
|
||||||
|
Loading…
Reference in New Issue
Block a user