Merge pull request #153120 from fabaff/bump-meshtastic
python3Packages.meshtastic: 1.2.48 -> 1.2.50
This commit is contained in:
commit
85f943aaad
3 changed files with 48 additions and 2 deletions
|
@ -12,12 +12,13 @@
|
|||
, pythonOlder
|
||||
, pyyaml
|
||||
, tabulate
|
||||
, pytap2
|
||||
, timeago
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "meshtastic";
|
||||
version = "1.2.48";
|
||||
version = "1.2.50";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
@ -26,7 +27,7 @@ buildPythonPackage rec {
|
|||
owner = "meshtastic";
|
||||
repo = "Meshtastic-python";
|
||||
rev = version;
|
||||
sha256 = "sha256-hf+9WmYLRN53cSipNRA+mRYzSLu6NAO6HSQ3NOeCPM8=";
|
||||
sha256 = "sha256-8Kq67FY8v4YU5hwZo+kEG2TLjI4MmvNRFTUY2C3mTEg=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -43,6 +44,7 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
checkInputs = [
|
||||
pytap2
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
|
|
42
pkgs/development/python-modules/pytap2/default.nix
Normal file
42
pkgs/development/python-modules/pytap2/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, nettools
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytap2";
|
||||
version = "2.2.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "johnthagen";
|
||||
repo = "pytap2";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-/t0Seg+8ZrOWOHBu9ftE1xkrnDeoYdHopXBvJTMGYRI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
nettools
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pytap2"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Object-oriented wrapper around the Linux Tun/Tap device";
|
||||
homepage = "https://github.com/johnthagen/pytap2";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -7507,6 +7507,8 @@ in {
|
|||
|
||||
pytankerkoenig = callPackage ../development/python-modules/pytankerkoenig { };
|
||||
|
||||
pytap2 = callPackage ../development/python-modules/pytap2 { };
|
||||
|
||||
pytautulli = callPackage ../development/python-modules/pytautulli { };
|
||||
|
||||
pyte = callPackage ../development/python-modules/pyte { };
|
||||
|
|
Loading…
Reference in a new issue