python3Packages.python-gc100: init at 1.0.3a0 (#434149)

This commit is contained in:
Martin Weinelt
2025-08-16 20:49:14 +02:00
committed by GitHub
3 changed files with 32 additions and 1 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 ];
};
}
@@ -1971,7 +1971,8 @@
];
"gc100" =
ps: with ps; [
]; # missing inputs: python-gc100
python-gc100
];
"gdacs" =
ps: with ps; [
aio-georss-gdacs
+2
View File
@@ -14647,6 +14647,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 { };