python3Packages.pynecil: 4.1.1 -> 4.2.0

Diff: https://github.com/tr4nt0r/pynecil/compare/v4.1.1...v4.2.0

Changelog: https://github.com/tr4nt0r/pynecil/releases/tag/v4.2.0

Changed files
+9 -2
pkgs
development
python-modules
pynecil
+9 -2
pkgs/development/python-modules/pynecil/default.nix
···
{
aiohttp,
bleak,
+
bleak-retry-connector,
buildPythonPackage,
fetchFromGitHub,
hatch-regex-commit,
···
buildPythonPackage rec {
pname = "pynecil";
-
version = "4.1.1";
+
version = "4.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "tr4nt0r";
repo = "pynecil";
tag = "v${version}";
-
hash = "sha256-4P9xsqTitUinGC/dH/4e/HtF7OvupjqTTNKTwo9Vuhc=";
+
hash = "sha256-ZEg5fmSE594YEgcJROOeVqc1reyGlyQiYNoCcfUanrY=";
};
pythonRelaxDeps = [ "aiohttp" ];
···
dependencies = [
aiohttp
bleak
+
bleak-retry-connector
];
pythonImportsCheck = [ "pynecil" ];
···
pytest-asyncio
pytest-cov-stub
pytestCheckHook
+
];
+
+
disabledTests = [
+
# requires access to system D-Bus
+
"test_get_settings_communication_error"
];
meta = {