Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
pythonAtLeast,
|
|
pythonOlder,
|
|
|
|
# runtime
|
|
six,
|
|
|
|
# tests
|
|
freezegun,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lomond";
|
|
version = "0.3.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wildfoundry";
|
|
repo = "dataplicity-${pname}";
|
|
rev = "b30dad3cc38d5ff210c5dd01f8c3c76aa6c616d1";
|
|
sha256 = "0lydq0imala08wxdyg2iwhqa6gcdrn24ah14h91h2zcxjhjk4gv8";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "'pytest-runner'" ""
|
|
'';
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
nativeCheckInputs = [
|
|
freezegun
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Makes HTTP requests
|
|
"test_proxy"
|
|
"test_live"
|
|
]
|
|
++ lib.optionals (pythonAtLeast "3.12") [
|
|
# https://github.com/wildfoundry/dataplicity-lomond/issues/91
|
|
"test_that_on_ping_responds_with_pong"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# requires tornado_4, which is not compatible with python3.10
|
|
"tests/test_integration.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Websocket Client Library";
|
|
homepage = "https://github.com/wildfoundry/dataplicity-lomond";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ jamiemagee ];
|
|
};
|
|
}
|