about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiocontextvars/default.nix
blob: d1048db7de98bde39f1688eff923aa1ce21e1fb9 (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
40
41
42
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
, pytest-asyncio
, isPy27
}:

buildPythonPackage rec {
  pname = "aiocontextvars";
  version = "0.2.2";
  pyproject = true;

  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "fantix";
    repo = "aiocontextvars";
    rev = "v${version}";
    hash = "sha256-s1YhpBLz+YNmUO+0BOltfjr3nz4m6mERszNqlmquTyg=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace-fail "'pytest-runner'," ""
  '';

  build-system = [ setuptools ];

  nativeCheckInputs = [
    pytestCheckHook
    pytest-asyncio
  ];

  meta = with lib; {
    description = "Asyncio support for PEP-567 contextvars backport";
    homepage = "https://github.com/fantix/aiocontextvars";
    license = licenses.bsd3;
    maintainers = [ ];
  };
}