python3Packages.eagle100: init at 0.1.0

This commit is contained in:
Fabian Affolter 2022-04-20 22:23:44 +02:00
parent bb59626b47
commit 3d707f0920
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

@ -2540,6 +2540,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 { };