summary refs log tree commit diff
path: root/pkgs/development/python-modules/blinker/default.nix
blob: 9864bbae3c616ec4b59913bcc861b0b1b95979b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pytest-asyncio
, setuptools
}:

buildPythonPackage rec {
  pname = "blinker";
  version = "1.6.2";
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Sv095m7zqfgGdVn7ehy+VVwX3L4VlxsF0bYlw+er4hM=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  pythonImportsCheck = [
    "blinker"
  ];

  nativeCheckInputs = [
    pytest-asyncio
    pytestCheckHook
  ];

  meta = with lib; {
    changelog = "https://github.com/pallets-eco/blinker/releases/tag/${version}";
    description = "Fast Python in-process signal/event dispatching system";
    homepage = "https://github.com/pallets-eco/blinker/";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}