python310Packages.aiomisc: 16.2 -> 16.2.10

This commit is contained in:
Fabian Affolter 2022-12-17 19:47:05 +01:00
parent 9159658fae
commit e9c1876e94

View file

@ -8,7 +8,7 @@
, colorlog
, croniter
, fastapi
, fetchFromGitHub
, fetchPypi
, logging-journald
, pytestCheckHook
, pythonOlder
@ -20,16 +20,14 @@
buildPythonPackage rec {
pname = "aiomisc";
version = "16.2";
version = "16.2.10";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "aiokitchen";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-wxm7MrFHZ7TrUGw5w7iLWs1olU8ZmJmJ7M/BZ6Nf0fU=";
src = fetchPypi {
inherit pname version;
hash = "sha256-iQlbd1DoPgxq+Am0BTDYXIBZoC21/54+bywDtcCXlls=";
};
propagatedBuildInputs = [
@ -73,11 +71,14 @@ buildPythonPackage rec {
"aiomisc"
];
disabledTestPaths = [
# Dependencies are not available at the moment
"tests/test_entrypoint.py"
"tests/test_raven_service.py"
];
# Upstream stopped tagging with 16.2
doCheck = false;
# disabledTestPaths = [
# # Dependencies are not available at the moment
# "tests/test_entrypoint.py"
# "tests/test_raven_service.py"
# ];
meta = with lib; {
description = "Miscellaneous utils for asyncio";