blob: 81839a2b7bde40d2416dd18a268100009be795b1 (
about) (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
pymodbus,
setuptools,
}:
buildPythonPackage rec {
pname = "pyiskra";
version = "0.1.17";
pyproject = true;
src = fetchFromGitHub {
owner = "Iskramis";
repo = "pyiskra";
tag = "v${version}";
hash = "sha256-LpiylQe/8bBIlFLmrbIEOyeqHgHzW9SaG71O7y28Rkg=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
pymodbus
];
pythonImportsCheck = [ "pyiskra" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/Iskramis/pyiskra/releases/tag/${src.tag}";
description = "Python Iskra devices interface";
homepage = "https://github.com/Iskramis/pyiskra";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|