python3Packages.ueagle: init at 0.0.2

This commit is contained in:
Fabian Affolter 2021-09-10 11:30:40 +02:00
parent 9aa5c090c6
commit a46ac13f5b
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "ueagle";
version = "0.0.2";
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 ];
};
}

View File

@ -9078,6 +9078,8 @@ in {
ufoprocessor = callPackage ../development/python-modules/ufoprocessor { };
ueagle = callPackage ../development/python-modules/ueagle { };
ujson = callPackage ../development/python-modules/ujson { };
ukpostcodeparser = callPackage ../development/python-modules/ukpostcodeparser { };