depot/third_party/nixpkgs/pkgs/development/python-modules/jsonrpc-base/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

20 lines
508 B
Nix

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "jsonrpc-base";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "7f374c57bfa1cb16d1f340d270bc0d9f1f5608fb1ac6c9ea15768c0e6ece48b7";
};
propagatedBuildInputs = [ ];
meta = with lib; {
description = "A JSON-RPC client library base interface";
homepage = "https://github.com/armills/jsonrpc-base";
license = licenses.bsd3;
maintainers = with maintainers; [ peterhoeg ];
};
}