mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python3Packages.ueagle: init at 0.0.2
This commit is contained in:
parent
9aa5c090c6
commit
a46ac13f5b
2 changed files with 38 additions and 0 deletions
36
pkgs/development/python-modules/ueagle/default.nix
Normal file
36
pkgs/development/python-modules/ueagle/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue