Merge pull request #311962 from fabaff/aioairq-bump

python312Packages.aioairq: 0.3.2 -> 0.4.2
This commit is contained in:
Fabian Affolter
2024-05-16 08:27:13 +02:00
committed by GitHub
@@ -1,35 +1,49 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchFromGitHub
, pycryptodome
, pythonOlder
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pycryptodome,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aioairq";
version = "0.3.2";
format = "setuptools";
version = "0.4.2";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "CorantGmbH";
repo = pname;
repo = "aioairq";
rev = "refs/tags/v${version}";
hash = "sha256-Sau0Ih+9WRChbztl8yjXVWy4/QxyllQKOPslbZroBeQ=";
hash = "sha256-ppjhGBAoA5iV+ZfUKkUCNJRYN82JtclRe36pbe85i5w=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
aiohttp
pycryptodome
];
# Module has no tests
doCheck = false;
#doCheck = false;
pythonImportsCheck = [
"aioairq"
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "aioairq" ];
disabledTestPaths = [
# Tests require network access
"tests/test_core_on_device.py"
];
meta = with lib; {