Merge pull request #169486 from fabaff/eagle100

python3Packages.eagle100: init at 0.1.0
This commit is contained in:
Fabian Affolter 2022-04-21 07:59:13 +02:00 committed by GitHub
commit c3a96b25f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "eagle100";
version = "0.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-i9ZvbjxSENJlQ+9sqWnIl1fL6tVbG3E/IUhe7b59sBk=";
};
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 ];
};
}

View File

@ -2538,6 +2538,8 @@ in {
dynd = callPackage ../development/python-modules/dynd { };
eagle100 = callPackage ../development/python-modules/eagle100 { };
easydict = callPackage ../development/python-modules/easydict { };
easygui = callPackage ../development/python-modules/easygui { };