python3Packages.sharkiqpy: init at 0.1.9

This commit is contained in:
Fabian Affolter 2021-02-23 21:53:57 +01:00
parent b1efbc6aa3
commit 94c9508de6
2 changed files with 34 additions and 0 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

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