mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-09 12:05:50 +03:00
python310Packages.aiomisc: 16.2 -> 16.2.10
This commit is contained in:
parent
9159658fae
commit
e9c1876e94
1 changed files with 13 additions and 12 deletions
|
@ -8,7 +8,7 @@
|
||||||
, colorlog
|
, colorlog
|
||||||
, croniter
|
, croniter
|
||||||
, fastapi
|
, fastapi
|
||||||
, fetchFromGitHub
|
, fetchPypi
|
||||||
, logging-journald
|
, logging-journald
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
@ -20,16 +20,14 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "aiomisc";
|
pname = "aiomisc";
|
||||||
version = "16.2";
|
version = "16.2.10";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchPypi {
|
||||||
owner = "aiokitchen";
|
inherit pname version;
|
||||||
repo = pname;
|
hash = "sha256-iQlbd1DoPgxq+Am0BTDYXIBZoC21/54+bywDtcCXlls=";
|
||||||
rev = "refs/tags/v${version}";
|
|
||||||
hash = "sha256-wxm7MrFHZ7TrUGw5w7iLWs1olU8ZmJmJ7M/BZ6Nf0fU=";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -73,11 +71,14 @@ buildPythonPackage rec {
|
||||||
"aiomisc"
|
"aiomisc"
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTestPaths = [
|
# Upstream stopped tagging with 16.2
|
||||||
# Dependencies are not available at the moment
|
doCheck = false;
|
||||||
"tests/test_entrypoint.py"
|
|
||||||
"tests/test_raven_service.py"
|
# disabledTestPaths = [
|
||||||
];
|
# # Dependencies are not available at the moment
|
||||||
|
# "tests/test_entrypoint.py"
|
||||||
|
# "tests/test_raven_service.py"
|
||||||
|
# ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Miscellaneous utils for asyncio";
|
description = "Miscellaneous utils for asyncio";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue