about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiocontextvars/default.nix
blob: 47f7108309e69fc0b204fd841b1c56118282b5a8 (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
43
{
  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 = [ ];
  };
}