summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-jsonrpc-server/default.nix
blob: e641a943f8653034ef163bcec433da7b5bdd62c5 (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
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
, pytestCheckHook, mock, pytestcov, coverage
, future, futures ? null, ujson, isPy38
}:

buildPythonPackage rec {
  pname = "python-jsonrpc-server";
  version = "0.4.0";

  src = fetchFromGitHub {
    owner = "palantir";
    repo = "python-jsonrpc-server";
    rev = version;
    sha256 = "0pcf50qvcxqnz3db58whqd8z89cdph19pfs1whgfm0zmwbwk0lw6";
  };

  postPatch = ''
    sed -i "s/version=versioneer.get_version(),/version=\"$version\",/g" setup.py
  '';

  checkInputs = [
    pytestCheckHook mock pytestcov coverage
  ];

  propagatedBuildInputs = [ future ujson ]
    ++ lib.optional (pythonOlder "3.2") futures;

  meta = with lib; {
    homepage = "https://github.com/palantir/python-jsonrpc-server";
    description = "A Python 2 and 3 asynchronous JSON RPC server";
    license = licenses.mit;
    maintainers = [ maintainers.mic92 ];
  };
}