chore: flake update

This commit is contained in:
arcnmx 2024-03-12 13:17:42 -07:00
parent 6216f0bb4c
commit b37e17bc0f
3 changed files with 19 additions and 59 deletions

View file

@ -1,39 +0,0 @@
{ buildPythonPackage
, fetchFromGitHub
, aiofiles
, cryptography
, protobuf
, setuptools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "androidtvremote2";
version = "0.0.13";
format = "pyproject";
src = fetchFromGitHub {
owner = "tronikos";
repo = pname;
rev = "v${version}";
hash = "sha256-+9VVUIvM//Fxv1a/+PAKWSQE8/TgBZzeTisgMqj6KPU=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
aiofiles
cryptography
protobuf
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"androidtvremote2"
];
}