summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/aiocontextvars/default.nix
blob: 7bcf18ee24d66737ad1fb6f346fd8dfb3bf2c40e (plain)
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 = {
    description = "Asyncio support for PEP-567 contextvars backport";
    homepage = "https://github.com/fantix/aiocontextvars";
    license = lib.licenses.bsd3;
    maintainers = [ ];
  };
}