depot/third_party/nixpkgs/pkgs/development/python-modules/miauth/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

50 lines
883 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 = with lib; {
description = "Authenticate and interact with Xiaomi devices over BLE";
homepage = "https://github.com/dnandha/miauth";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "miauth";
};
}