Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / blinker / default.nix
blob2e5707d1538900e02aa6ea47f6581ed465d6a57d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
5 # build-system
6 , flit-core
8 # tests
9 , pytestCheckHook
10 , pytest-asyncio
13 buildPythonPackage rec {
14   pname = "blinker";
15   version = "1.7.0";
16   format = "pyproject";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-5oIP9vpOTR2OJ0fCKDdJw/VH5P7hErmFVc3NrjKZYYI=";
21   };
23   nativeBuildInputs = [
24     flit-core
25   ];
27   pythonImportsCheck = [
28     "blinker"
29   ];
31   nativeCheckInputs = [
32     pytest-asyncio
33     pytestCheckHook
34   ];
36   meta = with lib; {
37     changelog = "https://github.com/pallets-eco/blinker/releases/tag/${version}";
38     description = "Fast Python in-process signal/event dispatching system";
39     homepage = "https://github.com/pallets-eco/blinker/";
40     license = licenses.mit;
41     maintainers = with maintainers; [ ];
42   };