Files
nixpkgs/pkgs/development/python-modules/eufylife-ble-client/default.nix
Michael Daniels 075e8c2c4f treewide: change 'format = "pyproject";' to 'pyproject = true;'
This is almost all find-and-replace.

I manually edited:
* pkgs/development/python-modules/notifications-android-tv/default.nix,
* pkgs/servers/home-assistant/default.nix,
* pkgs/development/tools/continuous-integration/buildbot/master.nix

A few files have not been changed in this PR because they would cause rebuilds.

This PR should have 0 rebuilds.
2026-01-12 17:50:35 -05:00

42 lines
824 B
Nix

{
lib,
bleak,
bleak-retry-connector,
buildPythonPackage,
cryptography,
fetchPypi,
poetry-core,
}:
buildPythonPackage rec {
pname = "eufylife-ble-client";
version = "0.1.10";
pyproject = true;
src = fetchPypi {
pname = "eufylife_ble_client";
inherit version;
hash = "sha256-hfUsFifkwr5qhYM6Otlxo4AAGu967p/eWCR+yBrC4eM=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
bleak
bleak-retry-connector
cryptography
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "eufylife_ble_client" ];
meta = {
description = "Module for parsing data from Eufy smart scales";
homepage = "https://github.com/bdr99/eufylife-ble-client";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}