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

21 lines
516 B
Nix
Raw Normal View History

2018-02-26 12:37:54 +01:00
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "jsonrpc-base";
2018-07-22 12:11:51 +02:00
version = "1.0.1";
2018-02-26 12:37:54 +01:00
src = fetchPypi {
inherit pname version;
2018-07-22 12:11:51 +02:00
sha256 = "21f860c915617f6475aa1ac5a1ec11de03cce6b279741f25ad97d8a4c5b76c3c";
2018-02-26 12:37:54 +01: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 ];
};
}