Merge pull request #169486 from fabaff/eagle100
python3Packages.eagle100: init at 0.1.0
This commit is contained in:
commit
c3a96b25f0
37
pkgs/development/python-modules/eagle100/default.nix
Normal file
37
pkgs/development/python-modules/eagle100/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user