Merge pull request #295807 from fabaff/bluetooth-auto-recovery-bump

python311Packages.bluetooth-auto-recovery: 1.3.0 -> 1.4.0
This commit is contained in:
Fabian Affolter
2024-03-14 21:35:02 +01:00
committed by GitHub
@@ -13,18 +13,23 @@
buildPythonPackage rec {
pname = "bluetooth-auto-recovery";
version = "1.3.0";
format = "pyproject";
version = "1.4.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "Bluetooth-Devices";
repo = pname;
repo = "bluetooth-auto-recovery";
rev = "refs/tags/v${version}";
hash = "sha256-4DFi7UrEQgU7dckUuGxj/sWyystx8NYb6xK4hyurKKo=";
hash = "sha256-fXR7leW+eXaQZ22IyeVhpS5/MOnuAiunUGMdtfVrlos=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail " --cov=bluetooth_auto_recovery --cov-report=term-missing:skip-covered" ""
'';
nativeBuildInputs = [
poetry-core
];
@@ -41,11 +46,6 @@ buildPythonPackage rec {
pytestCheckHook
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=bluetooth_auto_recovery --cov-report=term-missing:skip-covered" ""
'';
pythonImportsCheck = [
"bluetooth_auto_recovery"
];