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

21 lines
518 B
Nix
Raw Normal View History

2018-02-26 11:37:54 +00:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "jsonrpc-base";
2019-11-19 14:35:36 +00:00
version = "1.0.3";
2018-02-26 11:37:54 +00:00
src = fetchPypi {
inherit pname version;
2019-11-19 14:35:36 +00:00
sha256 = "7bda99589b4566f5027c2aeae122f409d8ccf4c811b278b8cfb616903871efb2";
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";
2018-02-26 11:37:54 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ peterhoeg ];
};
}