blob: 6d1bf6b349382b682c589e4fe9465258a882f2eb (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
requests,
}:
buildPythonPackage rec {
pname = "eagle100";
version = "0.1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-eyYY1x8IjIfUx5OiaOomiWunsO1++seFwXlI/iKDDLw=";
};
propagatedBuildInputs = [ requests ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "eagle100" ];
meta = with lib; {
description = "Python library for interacting with Rainforest EAGLE devices";
homepage = "https://github.com/hastarin/eagle100";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
|