python3Packages.gitterpy: init at 0.1.7

This commit is contained in:
Jamie Magee
2025-08-24 19:24:21 -07:00
parent 434576cbd5
commit d96e3ea7af
2 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{
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 ];
};
}

View File

@@ -5880,6 +5880,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 { };