blob: 21f143be02a04567e7c80301b94024ac03da8880 (
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
|
{
aiohttp,
buildPythonPackage,
fetchFromGitHub,
lib,
setuptools,
}:
buildPythonPackage rec {
pname = "pyelectra";
version = "1.2.4";
pyproject = true;
src = fetchFromGitHub {
owner = "jafar-atili";
repo = "pyelectra";
tag = version;
hash = "sha256-3g+6AXbHMStk77k+1Qh5kgDswUZ8I627YiA/PguUGBg=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
pythonImportsCheck = [ "electrasmart" ];
# upstream has no tests
doCheck = false;
meta = {
changelog = "https://github.com/jafar-atili/pyElectra/releases/tag/${version}";
description = "Electra Smart Python Integration";
homepage = "https://github.com/jafar-atili/pyelectra";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|