1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
aioconsole,
|
|
bleak-retry-connector,
|
|
bleak,
|
|
buildPythonPackage,
|
|
deprecated,
|
|
fetchFromGitHub,
|
|
freezegun,
|
|
poetry-core,
|
|
poetry-dynamic-versioning,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
syrupy,
|
|
tzdata,
|
|
tzlocal,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "melnor-bluetooth";
|
|
version = "0.0.25";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vanstinator";
|
|
repo = "melnor-bluetooth";
|
|
tag = "v${version}";
|
|
hash = "sha256-BQKXQrPT/+qm9cRO7pfScPwW0iwdhliTfX4XJ/kRQG0=";
|
|
};
|
|
|
|
build-system = [
|
|
poetry-core
|
|
poetry-dynamic-versioning
|
|
];
|
|
|
|
dependencies = [
|
|
aioconsole
|
|
bleak
|
|
bleak-retry-connector
|
|
deprecated
|
|
tzdata
|
|
tzlocal
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
freezegun
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
syrupy
|
|
];
|
|
|
|
pythonImportsCheck = [ "melnor_bluetooth" ];
|
|
|
|
meta = {
|
|
description = "Module to interact with Melnor and Eden bluetooth watering timers";
|
|
homepage = "https://github.com/vanstinator/melnor-bluetooth";
|
|
changelog = "https://github.com/vanstinator/melnor-bluetooth/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|