blob: 3397be0541819308e3937e9601362fbb777db836 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
requests,
}:
buildPythonPackage rec {
pname = "ueagle";
version = "0.0.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "jcalbert";
repo = "uEagle";
rev = version;
sha256 = "1hxwk5alalvmhc31y917dxsnbiwq1xci2krma3235581319xr3w7";
};
propagatedBuildInputs = [ requests ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "uEagle" ];
meta = {
description = "Python library Rainforest EAGLE devices";
homepage = "https://github.com/jcalbert/uEagle";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|