Files
nixpkgs/pkgs/development/python-modules/miauth/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

51 lines
881 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
# build-system
setuptools,
# dependencies
bluepy,
cryptography,
# checks
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "miauth";
version = "0.9.7";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
hash = "sha256-2/4nFInpdY8fb/b+sXhgT6ZPtEgBV+KHMyLnxIp6y/U=";
};
build-system = [ setuptools ];
pythonRelaxDeps = [ "cryptography" ];
dependencies = [
bluepy
cryptography
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "miauth" ];
meta = {
description = "Authenticate and interact with Xiaomi devices over BLE";
homepage = "https://github.com/dnandha/miauth";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "miauth";
};
}