61 lines
1.1 KiB
Nix
61 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
unasync,
|
|
boto3,
|
|
botocore,
|
|
requests,
|
|
aiohttp,
|
|
pyquery,
|
|
loguru,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyhive-integration";
|
|
version = "1.0.5";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Pyhass";
|
|
repo = "Pyhiveapi";
|
|
tag = "v${version}";
|
|
hash = "sha256-chAIFBd51a4QHVhAm5jsQvDhe7huSMyv8oARZKEc2Qw=";
|
|
};
|
|
|
|
pythonRemoveDeps = [ "pre-commit" ];
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
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 = {
|
|
description = "Python library to interface with the Hive API";
|
|
homepage = "https://github.com/Pyhass/Pyhiveapi";
|
|
changelog = "https://github.com/Pyhass/Pyhiveapi/releases/tag/${src.tag}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|