Unverified Commit 43690839 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.glances-api: 0.9.0 -> 0.9.1 (#507416)

parents 4b70548b deb8e4ee
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -9,16 +9,16 @@
  pytestCheckHook,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "glances-api";
  version = "0.9.0";
  version = "0.9.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "home-assistant-ecosystem";
    repo = "python-glances-api";
    tag = version;
    hash = "sha256-VLsNMFFt+kMxNw/81OMX4Fg/xCbQloCURmV0OxvClq8=";
    tag = finalAttrs.version;
    hash = "sha256-Hi9MvqxrqYB9MbTtm8XWJ1U4KpO9aB2lAIdZbrvNEdY=";
  };

  build-system = [ poetry-core ];
@@ -36,8 +36,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python API for interacting with Glances";
    homepage = "https://github.com/home-assistant-ecosystem/python-glances-api";
    changelog = "https://github.com/home-assistant-ecosystem/python-glances-api/releases/tag/${version}";
    changelog = "https://github.com/home-assistant-ecosystem/python-glances-api/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})