15 buildPythonPackage rec {
21 disabled = pythonOlder "3.6";
23 src = fetchFromGitHub {
26 rev = "refs/tags/v${version}";
27 hash = "sha256-tR2PCR1qGn4KnqAjEpcRTcVlMEpKCwn5RAm99AXBSnk=";
31 substituteInPlace requirements.txt \
32 --replace "pre-commit" ""
40 propagatedBuildInputs = [
49 # tests are not functional yet
53 # pyhiveapi accesses $HOME upon importing
57 pythonImportsCheck = [ "pyhiveapi" ];
60 description = "Python library to interface with the Hive API";
61 homepage = "https://github.com/Pyhass/Pyhiveapi";
62 license = licenses.mit;
63 maintainers = with maintainers; [ dotlambda ];