Unverified Commit 1913e602 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.pyhive-integration: 1.0.2 -> 1.0.3 (#446042)

parents 0b72acfa 6602b188
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  pythonOlder,
  fetchFromGitHub,
  setuptools,
  unasync,
@@ -15,16 +14,14 @@

buildPythonPackage rec {
  pname = "pyhive-integration";
  version = "1.0.2";
  version = "1.0.3";
  pyproject = true;

  disabled = pythonOlder "3.6";

  src = fetchFromGitHub {
    owner = "Pyhass";
    repo = "Pyhiveapi";
    tag = "v${version}";
    hash = "sha256-lfBr889s6NHcos/kdzQa9HJEcQ4dfCEMjuLYiLzesfE=";
    hash = "sha256-g3dEB41bYT2XygAIRqXpdCeYuh7IH9O3ZG1zr5Sm7+8=";
  };

  pythonRemoveDeps = [ "pre-commit" ];
@@ -53,11 +50,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "pyhiveapi" ];

  meta = with lib; {
  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 = licenses.mit;
    maintainers = with maintainers; [ dotlambda ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}