Loading pkgs/development/python-modules/gitterpy/default.nix 0 → 100644 +34 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, setuptools, requests, }: buildPythonPackage rec { pname = "gitterpy"; version = "0.1.7"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-nmZ6sVjrHRLfvXMr/fYiN+a4Wly87YKwAR+heP/sNkE="; }; build-system = [ setuptools ]; dependencies = [ requests ]; # Package has no tests doCheck = false; pythonImportsCheck = [ "gitterpy" ]; meta = { description = "Python interface for the Gitter API"; homepage = "https://github.com/MichaelYusko/GitterPy"; license = lib.licenses.mit; maintainers = [ lib.maintainers.jamiemagee ]; }; } pkgs/servers/home-assistant/component-packages.nix +2 −1 Original line number Diff line number Diff line Loading @@ -2039,7 +2039,8 @@ ]; "gitter" = ps: with ps; [ ]; # missing inputs: gitterpy gitterpy ]; "glances" = ps: with ps; [ glances-api Loading pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5884,6 +5884,8 @@ self: super: with self; { gitpython = callPackage ../development/python-modules/gitpython { }; gitterpy = callPackage ../development/python-modules/gitterpy { }; giturlparse = callPackage ../development/python-modules/giturlparse { }; glad = callPackage ../development/python-modules/glad { }; Loading Loading
pkgs/development/python-modules/gitterpy/default.nix 0 → 100644 +34 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, setuptools, requests, }: buildPythonPackage rec { pname = "gitterpy"; version = "0.1.7"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-nmZ6sVjrHRLfvXMr/fYiN+a4Wly87YKwAR+heP/sNkE="; }; build-system = [ setuptools ]; dependencies = [ requests ]; # Package has no tests doCheck = false; pythonImportsCheck = [ "gitterpy" ]; meta = { description = "Python interface for the Gitter API"; homepage = "https://github.com/MichaelYusko/GitterPy"; license = lib.licenses.mit; maintainers = [ lib.maintainers.jamiemagee ]; }; }
pkgs/servers/home-assistant/component-packages.nix +2 −1 Original line number Diff line number Diff line Loading @@ -2039,7 +2039,8 @@ ]; "gitter" = ps: with ps; [ ]; # missing inputs: gitterpy gitterpy ]; "glances" = ps: with ps; [ glances-api Loading
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -5884,6 +5884,8 @@ self: super: with self; { gitpython = callPackage ../development/python-modules/gitpython { }; gitterpy = callPackage ../development/python-modules/gitterpy { }; giturlparse = callPackage ../development/python-modules/giturlparse { }; glad = callPackage ../development/python-modules/glad { }; Loading