python3Packages.blinker: 1.5 -> 1.6.2

https://github.com/pallets-eco/blinker/blob/1.6.2/CHANGES.rst
This commit is contained in:
Martin Weinelt 2023-09-15 14:05:51 +02:00
parent 48e092e5a5
commit 377fecd2ff

View file

@ -2,24 +2,37 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytestCheckHook , pytestCheckHook
, pytest-asyncio
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "blinker"; pname = "blinker";
version = "1.5"; version = "1.6.2";
format = "pyproject";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-kj5eL2nBVfLMQtr7vXDhbj/eJNLUqiq3L744YjiJJGI="; hash = "sha256-Sv095m7zqfgGdVn7ehy+VVwX3L4VlxsF0bYlw+er4hM=";
}; };
nativeCheckInputs = [ pytestCheckHook ]; nativeBuildInputs = [
setuptools
];
pythonImportsCheck = [ "blinker" ]; pythonImportsCheck = [
"blinker"
];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
meta = with lib; { meta = with lib; {
homepage = "https://pythonhosted.org/blinker/"; changelog = "https://github.com/pallets-eco/blinker/releases/tag/${version}";
description = "Fast, simple object-to-object and broadcast signaling"; description = "Fast Python in-process signal/event dispatching system";
homepage = "https://github.com/pallets-eco/blinker/";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };