summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-jsonrpc-server
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2018-09-12 01:09:52 +0100
committerJörg Thalheim <joerg@thalheim.io>2018-09-12 09:03:08 +0100
commite4393102e673f990521dc109dfd4f27ceca9e437 (patch)
tree7984e19dcabe68308177ab268cfb11931d10947d /pkgs/development/python-modules/python-jsonrpc-server
parenta25dcb66077310067ca1b59b2f38046bee752b0a (diff)
python-jsonrpc-server: init at 0.0.1
Diffstat (limited to 'pkgs/development/python-modules/python-jsonrpc-server')
-rw-r--r--pkgs/development/python-modules/python-jsonrpc-server/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-jsonrpc-server/default.nix b/pkgs/development/python-modules/python-jsonrpc-server/default.nix
new file mode 100644
index 000000000000..508f18e6da00
--- /dev/null
+++ b/pkgs/development/python-modules/python-jsonrpc-server/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
+, pytest, mock, pytestcov, coverage
+, future, futures
+}:
+
+buildPythonPackage rec {
+ pname = "python-jsonrpc-server";
+ version = "0.0.1";
+
+ src = fetchFromGitHub {
+ owner = "palantir";
+ repo = "python-jsonrpc-server";
+ rev = version;
+ sha256 = "0p5dj1hxx3yz8vjk59dcp3h6ci1hrjkbzf9lr3vviy0xw327409k";
+ };
+
+ 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 ];
+ };
+}