linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / jsonrpclib-pelix / default.nix
blob570fb0a1d1a1ae17caa4e4c00dd85b7a95a3cd59
1 { buildPythonPackage
2 , fetchPypi
3 , lib
4 }:
6 buildPythonPackage rec {
7   pname = "jsonrpclib-pelix";
8   version = "0.4.2";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "340915c17ebef7451948341542bf4789fc8d8c9fe604e86f00b722b6074a89f0";
13   };
15   doCheck = false; # test_suite="tests" in setup.py but no tests in pypi.
17   meta = with lib; {
18     description = "JSON RPC client library - Pelix compatible fork";
19     homepage = "https://pypi.python.org/pypi/jsonrpclib-pelix/";
20     license = lib.licenses.asl20;
21     maintainers = with maintainers; [ ];
22   };