evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / jsonrpclib-pelix / default.nix
blob314e3433dadf26a6812d1cda5d9b15b2daf218dc
2   buildPythonPackage,
3   fetchPypi,
4   lib,
5 }:
7 buildPythonPackage rec {
8   pname = "jsonrpclib-pelix";
9   version = "0.4.3.3";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-xJT+cQCxE5sTEUacKLwy0cuS5P8fRRH7cdaAcgXcN3M=";
15   };
17   doCheck = false; # test_suite="tests" in setup.py but no tests in pypi.
19   meta = with lib; {
20     description = "JSON RPC client library - Pelix compatible fork";
21     homepage = "https://pypi.python.org/pypi/jsonrpclib-pelix/";
22     license = lib.licenses.asl20;
23     maintainers = [ ];
24   };