nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildPythonPackage,
3 hatchling,
4 fetchPypi,
5 lib,
6}:
7
8buildPythonPackage rec {
9 pname = "jsonrpclib-pelix";
10 version = "1.0.0";
11 pyproject = true;
12 build-system = [ hatchling ];
13
14 src = fetchPypi {
15 pname = "jsonrpclib_pelix";
16 inherit version;
17 hash = "sha256-Wx6hTabjcdur7bGr7QqLoc9ZZCg1DNnQGI88bGyO94Q=";
18 };
19
20 doCheck = false; # test_suite="tests" in setup.py but no tests in pypi.
21
22 meta = {
23 description = "JSON RPC client library - Pelix compatible fork";
24 homepage = "https://pypi.python.org/pypi/jsonrpclib-pelix/";
25 license = lib.licenses.asl20;
26 maintainers = [ ];
27 };
28}