mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
python311Packages.androidtvremote2: init at 0.0.9
This commit is contained in:
parent
9017e6d371
commit
db00ba7625
49
pkgs/development/python-modules/androidtvremote2/default.nix
Normal file
49
pkgs/development/python-modules/androidtvremote2/default.nix
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{ lib
|
||||||
|
, aiofiles
|
||||||
|
, buildPythonPackage
|
||||||
|
, cryptography
|
||||||
|
, fetchFromGitHub
|
||||||
|
, protobuf
|
||||||
|
, pythonOlder
|
||||||
|
, setuptools
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "androidtvremote2";
|
||||||
|
version = "0.0.9";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tronikos";
|
||||||
|
repo = "androidtvremote2";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
hash = "sha256-gQ2PVEhX1jwd0yvMf/Z0yKvruDzpY5080x4IU2i/PJ4=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiofiles
|
||||||
|
cryptography
|
||||||
|
protobuf
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"androidtvremote2"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Module only has a dummy test
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Library to interact with the Android TV Remote protocol v2";
|
||||||
|
homepage = "https://github.com/tronikos/androidtvremote2";
|
||||||
|
changelog = "https://github.com/tronikos/androidtvremote2/releases/tag/v${version}";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -468,6 +468,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
androidtv = callPackage ../development/python-modules/androidtv { };
|
androidtv = callPackage ../development/python-modules/androidtv { };
|
||||||
|
|
||||||
|
androidtvremote2 = callPackage ../development/python-modules/androidtvremote2 { };
|
||||||
|
|
||||||
androguard = callPackage ../development/python-modules/androguard { };
|
androguard = callPackage ../development/python-modules/androguard { };
|
||||||
|
|
||||||
angr = callPackage ../development/python-modules/angr { };
|
angr = callPackage ../development/python-modules/angr { };
|
||||||
|
Loading…
Reference in New Issue
Block a user