blob: d114cf48fd1f3d1aff427b678e7b8e7d62b8a62d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 ];
};
}
|