mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
Merge pull request #186159 from fabaff/aioblescan
python310Packages.aioblescan: init at 0.2.13
This commit is contained in:
commit
a1cd92ee1a
36
pkgs/development/python-modules/aioblescan/default.nix
Normal file
36
pkgs/development/python-modules/aioblescan/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioblescan";
|
||||
version = "0.2.13";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "frawau";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-n1FiBsuVpVJrIq6+kuMNugpEaUOFQ/Gk/QU7Hry4YrU=";
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"aioblescan"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library to listen for BLE advertized packets";
|
||||
homepage = "https://github.com/frawau/aioblescan";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -1140,6 +1140,8 @@ with pkgs;
|
||||
|
||||
aide = callPackage ../tools/security/aide { };
|
||||
|
||||
aioblescan = with python3Packages; toPythonApplication aioblescan;
|
||||
|
||||
aiodnsbrute = python3Packages.callPackage ../tools/security/aiodnsbrute { };
|
||||
|
||||
aircrack-ng = callPackage ../tools/networking/aircrack-ng { };
|
||||
|
@ -271,6 +271,8 @@ in {
|
||||
|
||||
aioazuredevops = callPackage ../development/python-modules/aioazuredevops { };
|
||||
|
||||
aioblescan = callPackage ../development/python-modules/aioblescan { };
|
||||
|
||||
aiocache = callPackage ../development/python-modules/aiocache { };
|
||||
|
||||
aiocoap = callPackage ../development/python-modules/aiocoap { };
|
||||
|
Loading…
Reference in New Issue
Block a user