nixpkgs/pkgs/development/python-modules/miauth/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
902 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
2024-05-22 14:01:06 +00:00
# build-system
setuptools,
2024-05-22 14:01:06 +00:00
# dependencies
bluepy,
cryptography,
2024-05-22 14:01:06 +00:00
# tests
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=";
};
nativeBuildInputs = [
setuptools
];
pythonRelaxDeps = [ "cryptography" ];
propagatedBuildInputs = [
bluepy
cryptography
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "miauth" ];
meta = with lib; {
description = "Authenticate and interact with Xiaomi devices over BLE";
mainProgram = "miauth";
homepage = "https://github.com/dnandha/miauth";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
};
}