depot/third_party/nixpkgs/pkgs/development/python-modules/jsonrpclib-pelix/default.nix
Default email f61cd259d4 Project import generated by Copybara.
GitOrigin-RevId: 82155ff501c7622cb2336646bb62f7624261f6d7
2021-10-01 17:20:50 +08:00

23 lines
568 B
Nix

{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
pname = "jsonrpclib-pelix";
version = "0.4.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "f6f376c72ec1c0dfd69fcc2721d711f6ca1fe22bf71f99e6884c5e43e9b58c95";
};
doCheck = false; # test_suite="tests" in setup.py but no tests in pypi.
meta = with lib; {
description = "JSON RPC client library - Pelix compatible fork";
homepage = "https://pypi.python.org/pypi/jsonrpclib-pelix/";
license = lib.licenses.asl20;
maintainers = with maintainers; [ ];
};
}