depot/third_party/nixpkgs/pkgs/development/python-modules/pyhiveapi/default.nix
Default email 792b51d22f Project import generated by Copybara.
GitOrigin-RevId: d5f237872975e6fb6f76eef1368b5634ffcd266f
2022-02-20 05:27:41 +00:00

63 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, unasync
, boto3
, botocore
, requests
, aiohttp
, pyquery
, loguru
}:
buildPythonPackage rec {
pname = "pyhiveapi";
version = "0.5.1";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "Pyhass";
repo = "Pyhiveapi";
rev = "v${version}";
hash = "sha256-/M1OjApc0l0EzNI4hs4KO6woCOmTPveTFCyj5MjM5EE=";
};
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 ];
};
}