Merge pull request #328994 from fabaff/aiomisc-bump

python312Packages.aiomisc: 17.5.24 -> 17.5.25
This commit is contained in:
Fabian Affolter 2024-08-05 09:24:12 +02:00 committed by GitHub
commit 60910727a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 5 deletions

View File

@ -7,23 +7,26 @@
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aiofile";
version = "3.8.6";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mosquito";
repo = pname;
repo = "aiofile";
rev = "refs/tags/${version}";
hash = "sha256-KBly/aeHHZh7mL8MJ9gmxbqS7PmR4sedtBY/2HCXt54=";
};
propagatedBuildInputs = [ caio ];
build-system = [ setuptools ];
dependencies = [ caio ];
nativeCheckInputs = [
aiomisc
@ -44,8 +47,12 @@ buildPythonPackage rec {
"test_async_open_unicode"
"test_async_open"
"test_binary_io_wrapper"
"test_line_reader_one_line"
"test_modes"
"test_open_non_existent_file_with_append"
"test_text_io_wrapper"
"test_truncate"
"test_unicode_reader"
"test_unicode_writer"
"test_write_read_nothing"
];

View File

@ -22,14 +22,14 @@
buildPythonPackage rec {
pname = "aiomisc";
version = "17.5.24";
version = "17.5.25";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-9/7QI9z5dYADNRIWBelrUoNe/LaHqpb/Ch4e1Z9I1s4=";
hash = "sha256-qxvisqvsDdhdFut9kvbmcjXAcTw7QpYruGk8zyQcg9M=";
};
build-system = [ poetry-core ];