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