vscode-extensions.github.copilot{*}: bump (#364729)
[NixPkgs.git] / pkgs / development / python-modules / blinker / default.nix
blobc32e23e56a9214253dc5dea1c8cd887256ca826a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
6   # build-system
7   flit-core,
9   # tests
10   pytestCheckHook,
11   pytest-asyncio,
14 buildPythonPackage rec {
15   pname = "blinker";
16   version = "1.8.2";
17   format = "pyproject";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-j3ewnTv3x5XpaelIbznCxenDnU7gdCS+K8WU7OlkLYM=";
22   };
24   nativeBuildInputs = [ flit-core ];
26   pythonImportsCheck = [ "blinker" ];
28   nativeCheckInputs = [
29     pytest-asyncio
30     pytestCheckHook
31   ];
33   meta = with lib; {
34     changelog = "https://github.com/pallets-eco/blinker/releases/tag/${version}";
35     description = "Fast Python in-process signal/event dispatching system";
36     homepage = "https://github.com/pallets-eco/blinker/";
37     license = licenses.mit;
38     maintainers = [ ];
39   };