about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyro5/default.nix
blob: 93ea78d692c8f773b91e038ae260d1a779e57fab (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
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, serpent
, pythonOlder
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "pyro5";
  version = "5.14";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    pname = "Pyro5";
    inherit version;
    hash = "sha256-ZP3OE3sP5TLohhTSRrfJi74KT0JnhsUkU5rNxeaUCGo=";
  };

  propagatedBuildInputs = [
    serpent
  ];

  __darwinAllowLocalNetworking = true;

  nativeCheckInputs = [
    pytestCheckHook
  ];

  disabledTests = [
    # Ignore network related tests, which fail in sandbox
    "StartNSfunc"
    "Broadcast"
    "GetIP"
    "TestNameServer"
    "TestBCSetup"
  ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
    "Socket"
  ];

  pythonImportsCheck = [
    "Pyro5"
  ];

  meta = with lib; {
    description = "Distributed object middleware for Python (RPC)";
    homepage = "https://github.com/irmen/Pyro5";
    changelog = "https://github.com/irmen/Pyro5/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ peterhoeg ];
  };
}