nixpkgs/pkgs/development/python-modules/rpcq/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

62 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, msgpack
, numpy
, pytest-asyncio
, pytestCheckHook
, python-rapidjson
, pythonOlder
, pyzmq
, ruamel-yaml
}:
buildPythonPackage rec {
pname = "rpcq";
version = "3.10.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "rigetti";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-J7jtGXJIF3jp0a0IQZmSR4TWf9D02Luau+Bupmi/d68=";
};
propagatedBuildInputs = [
msgpack
python-rapidjson
pyzmq
ruamel-yaml
];
nativeCheckInputs = [
numpy
pytest-asyncio
pytestCheckHook
];
postPatch = ''
substituteInPlace setup.py \
--replace "msgpack>=0.6,<1.0" "msgpack"
'';
disabledTests = [
# Test doesn't work properly on Hydra
"test_client_backlog"
];
pythonImportsCheck = [
"rpcq"
];
meta = with lib; {
description = "The RPC framework and message specification for rigetti Quantum Cloud services";
homepage = "https://github.com/rigetti/rpcq";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}