Merge pull request #304290 from r-ryantm/auto-update/python312Packages.asyncstdlib

python312Packages.asyncstdlib: 3.12.2 -> 3.12.3
This commit is contained in:
Fabian Affolter 2024-04-16 12:28:12 +02:00 committed by GitHub
commit 0d8993eded
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,14 +1,15 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, flit-core fetchFromGitHub,
, pytestCheckHook flit-core,
, pythonOlder pytestCheckHook,
pythonOlder,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "asyncstdlib"; pname = "asyncstdlib";
version = "3.12.2"; version = "3.12.3";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
@ -17,20 +18,14 @@ buildPythonPackage rec {
owner = "maxfischer2781"; owner = "maxfischer2781";
repo = "asyncstdlib"; repo = "asyncstdlib";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-5DQM8m3aeCZAXOi+Rm+iM409juBBYdZDNqBAbhyTm/M="; hash = "sha256-OLb4+7FFeVDW0ePyVJW8aaosouxlU/4Uq2ktvVLpDFY=";
}; };
build-system = [ build-system = [ flit-core ];
flit-core
];
nativeCheckInputs = [ nativeCheckInputs = [ pytestCheckHook ];
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "asyncstdlib" ];
"asyncstdlib"
];
meta = with lib; { meta = with lib; {
description = "Python library that extends the Python asyncio standard library"; description = "Python library that extends the Python asyncio standard library";