02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
25 lines
639 B
Nix
25 lines
639 B
Nix
{ lib, pythonOlder, buildPythonPackage, fetchPypi, pytestCheckHook }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ajsonrpc";
|
|
version = "1.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "791bac18f0bf0dee109194644f151cf8b7ff529c4b8d6239ac48104a3251a19f";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "ajsonrpc" ];
|
|
|
|
meta = with lib; {
|
|
description = "Async JSON-RPC 2.0 protocol + asyncio server";
|
|
homepage = "https://github.com/pavlov99/ajsonrpc";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ oxzi ];
|
|
};
|
|
}
|