nixpkgs/pkgs/development/python-modules/jsonrpc-async/default.nix

22 lines
560 B
Nix
Raw Normal View History

2018-02-26 11:38:16 +00:00
{ stdenv, buildPythonPackage, fetchPypi
, aiohttp, jsonrpc-base }:
buildPythonPackage rec {
pname = "jsonrpc-async";
2018-08-25 06:46:09 +01:00
version = "1.0.1";
2018-02-26 11:38:16 +00:00
src = fetchPypi {
inherit pname version;
2018-08-25 06:46:09 +01:00
sha256 = "adda3ff6e122b1932b6e20cf583666ea65db4248bc19b04811a4ccc0f0b03d95";
2018-02-26 11:38:16 +00:00
};
propagatedBuildInputs = [ aiohttp jsonrpc-base ];
meta = with stdenv.lib; {
description = "A JSON-RPC client library for asyncio";
homepage = https://github.com/armills/jsonrpc-async;
2018-02-26 11:38:16 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ peterhoeg ];
};
}