lol

python3Packages.blinker: 1.5 -> 1.6.2

https://github.com/pallets-eco/blinker/blob/1.6.2/CHANGES.rst

+19 -6
+19 -6
pkgs/development/python-modules/blinker/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 + , pytest-asyncio 6 + , setuptools 5 7 }: 6 8 7 9 buildPythonPackage rec { 8 10 pname = "blinker"; 9 - version = "1.5"; 11 + version = "1.6.2"; 12 + format = "pyproject"; 10 13 11 14 src = fetchPypi { 12 15 inherit pname version; 13 - hash = "sha256-kj5eL2nBVfLMQtr7vXDhbj/eJNLUqiq3L744YjiJJGI="; 16 + hash = "sha256-Sv095m7zqfgGdVn7ehy+VVwX3L4VlxsF0bYlw+er4hM="; 14 17 }; 15 18 16 - nativeCheckInputs = [ pytestCheckHook ]; 19 + nativeBuildInputs = [ 20 + setuptools 21 + ]; 22 + 23 + pythonImportsCheck = [ 24 + "blinker" 25 + ]; 17 26 18 - pythonImportsCheck = [ "blinker" ]; 27 + nativeCheckInputs = [ 28 + pytest-asyncio 29 + pytestCheckHook 30 + ]; 19 31 20 32 meta = with lib; { 21 - homepage = "https://pythonhosted.org/blinker/"; 22 - description = "Fast, simple object-to-object and broadcast signaling"; 33 + changelog = "https://github.com/pallets-eco/blinker/releases/tag/${version}"; 34 + description = "Fast Python in-process signal/event dispatching system"; 35 + homepage = "https://github.com/pallets-eco/blinker/"; 23 36 license = licenses.mit; 24 37 maintainers = with maintainers; [ ]; 25 38 };