My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/jsonrpclib-pelix/default.nix

23 lines
555 B

{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
pname = "jsonrpclib-pelix";
version = "0.4.3.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-6eCzPvqPog2BfdeN/Z5M2zlnyKXTy1p4O+HugcSonHw=";
};
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; [ ];
};
}