cb254b005b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-python-jsonrpc-server/versions
35 lines
805 B
Nix
35 lines
805 B
Nix
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
|
|
, pytest, mock, pytestcov, coverage
|
|
, future, futures
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-jsonrpc-server";
|
|
version = "0.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "palantir";
|
|
repo = "python-jsonrpc-server";
|
|
rev = version;
|
|
sha256 = "1xp6xipslw8d1yv05mjmhql07kz04ibci5psjrv6rapqi6jp4bgk";
|
|
};
|
|
|
|
checkInputs = [
|
|
pytest mock pytestcov coverage
|
|
];
|
|
|
|
checkPhase = ''
|
|
pytest
|
|
'';
|
|
|
|
propagatedBuildInputs = [ future ]
|
|
++ stdenv.lib.optional (pythonOlder "3.2") futures;
|
|
|
|
meta = with stdenv.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 ];
|
|
};
|
|
}
|