1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6}:
7
8buildPythonPackage rec {
9 pname = "python-gc100";
10 version = "1.0.3a0";
11 pyproject = true;
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-thuAmJUczTpKy/yZuVqGY3K3fyimw2PW/rGiyi7bwC4=";
16 };
17
18 build-system = [ setuptools ];
19
20 pythonImportsCheck = [ "gc100" ];
21
22 meta = {
23 description = "Python-based socket client for Global Cache GC100 digital I/O interface";
24 homepage = "https://github.com/davegravy/python-gc100";
25 license = lib.licenses.gpl3Plus;
26 maintainers = [ lib.maintainers.jamiemagee ];
27 };
28}