python3Packages.pyhiveapi: init at 0.4.2

This commit is contained in:
Robert Schütz 2021-06-19 18:10:36 +02:00
parent a5212a7727
commit 6420b66f0b
2 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,63 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, unasync
, boto3
, botocore
, requests
, aiohttp
, pyquery
, loguru
}:
buildPythonPackage rec {
pname = "pyhiveapi";
version = "0.4.2";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "Pyhass";
repo = "Pyhiveapi";
rev = "v${version}";
sha256 = "0x9cfxfdpccz360azpyfhvn09xxkw7vxy42npgbqhpy2g6mh5sif";
};
postPatch = ''
substituteInPlace requirements.txt \
--replace "pre-commit" ""
'';
nativeBuildInputs = [
unasync
];
propagatedBuildInputs = [
boto3
botocore
requests
aiohttp
pyquery
loguru
];
# tests are not functional yet
doCheck = false;
postBuild = ''
# pyhiveapi accesses $HOME upon importing
export HOME=$TMPDIR
'';
pythonImportsCheck = [ "pyhiveapi" ];
meta = with lib; {
description = "Python library to interface with the Hive API";
homepage = "https://github.com/Pyhass/Pyhiveapi";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View File

@ -5268,6 +5268,8 @@ in {
pyheos = callPackage ../development/python-modules/pyheos { };
pyhiveapi = callPackage ../development/python-modules/pyhiveapi { };
pynndescent = callPackage ../development/python-modules/pynndescent { };
pynobo = callPackage ../development/python-modules/pynobo { };