summary refs log tree commit diff
path: root/pkgs/development/python-modules/graphql-core/default.nix
blob: 21cc58e67fcd7eddba1f6ffb504850b47a793fa3 (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
44
45
46
47
48
49
50
51
52
53
54
{ buildPythonPackage
, fetchFromGitHub
, lib

, coveralls
, promise
, pytest
, pytest-benchmark
, pytest-mock
, rx
, six
}:

buildPythonPackage rec {
  pname = "graphql-core";
  version = "2.3.1";

  src = fetchFromGitHub {
    owner = "graphql-python";
    repo = pname;
    rev = "v${version}";
    sha256 = "029jnwy6zbj4x7f3ffpn1gyx0w9ala9cj2g115g6aa7im3xd2jma";
  };

  propagatedBuildInputs = [
    promise
    rx
    six
  ];

  checkInputs = [
    coveralls
    pytest
    pytest-benchmark
    pytest-mock
  ];

  checkPhase = "pytest";

  configurePhase = ''
    substituteInPlace setup.py \
      --replace 'pytest-mock==1.2' 'pytest-mock==1.13.0' \
      --replace 'pytest-benchmark==3.0.0' 'pytest-benchmark==3.2.2'
  '';

  meta = with lib; {
    description = "Port of graphql-js to Python";
    homepage = "https://github.com/graphql-python/graphql-core";
    license = licenses.mit;
    maintainers = with maintainers; [
      kamadorueda
    ];
  };
}