mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
python311Packages.nats-py: format with nixfmt
This commit is contained in:
parent
5d66004239
commit
77502bb56e
@ -1,15 +1,16 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, aiohttp
|
||||
, buildPythonPackage
|
||||
, ed25519
|
||||
, fetchFromGitHub
|
||||
, nats-server
|
||||
, nkeys
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, uvloop
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
aiohttp,
|
||||
buildPythonPackage,
|
||||
ed25519,
|
||||
fetchFromGitHub,
|
||||
nats-server,
|
||||
nkeys,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
uvloop,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -26,21 +27,13 @@ buildPythonPackage rec {
|
||||
hash = "sha256-5lvdt1JbOmdts0CYU00bSmv0LsMQsOe//yUgyevBULE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
nativeBuildInputs = [ setuptools ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ed25519
|
||||
];
|
||||
propagatedBuildInputs = [ ed25519 ];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
aiohttp = [
|
||||
aiohttp
|
||||
];
|
||||
nkeys = [
|
||||
nkeys
|
||||
];
|
||||
aiohttp = [ aiohttp ];
|
||||
nkeys = [ nkeys ];
|
||||
# fast_parse = [
|
||||
# fast-mail-parser
|
||||
# ];
|
||||
@ -52,20 +45,20 @@ buildPythonPackage rec {
|
||||
uvloop
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# AssertionError: assert 5 == 0
|
||||
"test_pull_subscribe_limits"
|
||||
"test_fetch_n"
|
||||
"test_subscribe_no_echo"
|
||||
"test_stream_management"
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
"test_subscribe_iterate_next_msg"
|
||||
"test_buf_size_force_flush_timeout"
|
||||
];
|
||||
disabledTests =
|
||||
[
|
||||
# AssertionError: assert 5 == 0
|
||||
"test_pull_subscribe_limits"
|
||||
"test_fetch_n"
|
||||
"test_subscribe_no_echo"
|
||||
"test_stream_management"
|
||||
]
|
||||
++ lib.optionals stdenv.isDarwin [
|
||||
"test_subscribe_iterate_next_msg"
|
||||
"test_buf_size_force_flush_timeout"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"nats"
|
||||
];
|
||||
pythonImportsCheck = [ "nats" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python client for NATS.io";
|
||||
|
Loading…
Reference in New Issue
Block a user