1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
55 lines
989 B
Nix
55 lines
989 B
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
async-timeout,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
jsonrpc-base,
|
|
pytest-asyncio_0,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jsonrpc-websocket";
|
|
version = "3.2.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "emlove";
|
|
repo = "jsonrpc-websocket";
|
|
tag = version;
|
|
hash = "sha256-SgwEY/5MPEkSrcsQV4qkVgKmYYYsWA2YluReOz7sEjc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
async-timeout
|
|
jsonrpc-base
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio_0
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlags = [
|
|
"--asyncio-mode=auto"
|
|
];
|
|
|
|
enabledTestPaths = [
|
|
"tests.py"
|
|
];
|
|
|
|
pythonImportsCheck = [ "jsonrpc_websocket" ];
|
|
|
|
meta = {
|
|
description = "JSON-RPC websocket client library for asyncio";
|
|
homepage = "https://github.com/emlove/jsonrpc-websocket";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ peterhoeg ];
|
|
};
|
|
}
|