about summary refs log tree commit diff
path: root/pkgs/development/python-modules/lomond/default.nix
blob: 4fbdf5a2f8231ae6decece2aa68d49a6e6832b1a (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
60
61
62
{ buildPythonPackage
, fetchFromGitHub
, lib
, pythonAtLeast
, pythonOlder

# runtime
, six

# tests
, freezegun
, pytest-mock
, pytestCheckHook
, tornado_4
}:

buildPythonPackage rec {
  pname = "lomond";
  version = "0.3.3";

  src = fetchFromGitHub {
    owner = "wildfoundry";
    repo = "dataplicity-${pname}";
    rev = "b30dad3cc38d5ff210c5dd01f8c3c76aa6c616d1";
    sha256 = "0lydq0imala08wxdyg2iwhqa6gcdrn24ah14h91h2zcxjhjk4gv8";
  };

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

  propagatedBuildInputs = [
    six
  ];

  nativeCheckInputs = [
    freezegun
    pytest-mock
    pytestCheckHook
  ] ++ lib.optionals (pythonOlder "3.10") [
    tornado_4
  ];

  disabledTests = [
    # Makes HTTP requests
    "test_proxy"
    "test_live"
  ];

  disabledTestPaths = lib.optionals (pythonAtLeast "3.10") [
    # requires tornado_4, which is not compatible with python3.10
    "tests/test_integration.py"
  ];

  meta = with lib; {
    description = "Websocket Client Library";
    homepage = "https://github.com/wildfoundry/dataplicity-lomond";
    license = licenses.bsd3;
    maintainers = with maintainers; [ jamiemagee ];
  };
}