about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/stone/default.nix
blob: 888c98cd6279da57219b310491b31e9a1e6b31ad (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
55
56
57
58
59
{ lib
, buildPythonPackage
, fetchFromGitHub
, mock
, ply
, pytestCheckHook
, six
, pythonOlder
}:

buildPythonPackage rec {
  pname = "stone";
  version = "3.3.1";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "dropbox";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-0FWdYbv+paVU3Wj6g9OrSNUB0pH8fLwTkhVIBPeFB/U=";
  };

  postPatch = ''
    # https://github.com/dropbox/stone/issues/288
    substituteInPlace stone/frontend/ir_generator.py \
      --replace "inspect.getargspec" "inspect.getfullargspec"
    substituteInPlace setup.py \
      --replace "'pytest-runner == 5.2.0'," ""
  '';

  propagatedBuildInputs = [
    ply
    six
  ];

  nativeCheckInputs = [
    pytestCheckHook
    mock
  ];

  disabledTests = [
    "test_type_name_with_module"
  ];

  pythonImportsCheck = [
    "stone"
  ];

  meta = with lib; {
    description = "Official Api Spec Language for Dropbox";
    mainProgram = "stone";
    homepage = "https://github.com/dropbox/stone";
    changelog = "https://github.com/dropbox/stone/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ jonringer ];
  };
}