python3Packages.python-gc100: init at 1.0.3a0

This commit is contained in:
Jamie Magee
2025-08-15 22:50:23 -07:00
parent 3b0feaf8c2
commit 2742235f4f
2 changed files with 30 additions and 0 deletions
@@ -0,0 +1,28 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "python-gc100";
version = "1.0.3a0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-thuAmJUczTpKy/yZuVqGY3K3fyimw2PW/rGiyi7bwC4=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "gc100" ];
meta = {
description = "Python-based socket client for Global Cache GC100 digital I/O interface";
homepage = "https://github.com/davegravy/python-gc100";
license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
+2
View File
@@ -14643,6 +14643,8 @@ self: super: with self; {
python-gammu = callPackage ../development/python-modules/python-gammu { };
python-gc100 = callPackage ../development/python-modules/python-gc100 { };
python-gitlab = callPackage ../development/python-modules/python-gitlab { };
python-glanceclient = callPackage ../development/python-modules/python-glanceclient { };