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

21 lines
516 B
Nix
Raw Normal View History

2018-02-26 11:37:54 +00:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "jsonrpc-base";
2018-08-25 05:46:16 +00:00
version = "1.0.2";
2018-02-26 11:37:54 +00:00
src = fetchPypi {
inherit pname version;
2018-08-25 05:46:16 +00:00
sha256 = "f9baac32aa51c3052d03b86ff30a9856900b8b4a4eb175f7bf2c8722520b8637";
2018-02-26 11:37:54 +00:00
};
propagatedBuildInputs = [ ];
meta = with stdenv.lib; {
description = "A JSON-RPC client library base interface";
homepage = https://github.com/armills/jsonrpc-base;
license = licenses.bsd3;
maintainers = with maintainers; [ peterhoeg ];
};
}