2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
45 lines
803 B
Nix
45 lines
803 B
Nix
{ lib
|
|
, bleak
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, setuptools
|
|
, wheel
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyacaia-async";
|
|
version = "0.0.10";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
pname = "pyacaia_async";
|
|
inherit version;
|
|
hash = "sha256-hmzsZIIZsswUvy9AMgfXNC2v6H8Wvgdk9Qa4PoYmhCU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
bleak
|
|
];
|
|
|
|
# Module has no tests in PyPI releases
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"pyacaia_async"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module to interact with Acaia scales";
|
|
homepage = "https://github.com/zweckj/pyacaia_async";
|
|
license = with licenses; [ gpl3Only mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|