65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
# install dependencies
|
|
pytest,
|
|
vcrpy,
|
|
# test dependencies
|
|
hatchling,
|
|
pytestCheckHook,
|
|
pytest-httpbin,
|
|
pytest-mock,
|
|
requests,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-recording";
|
|
version = "0.13.4";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kiwicom";
|
|
repo = "pytest-recording";
|
|
tag = "v${version}";
|
|
hash = "sha256-S++MnI0GgpQxS6kFkt05kcE4JMW7jyFjJ3o7DhfYoVA=";
|
|
};
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
buildInputs = [
|
|
pytest
|
|
];
|
|
|
|
dependencies = [ vcrpy ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-httpbin
|
|
pytest-mock
|
|
requests
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_block_network_with_allowed_hosts"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# Missing socket.AF_NETLINK
|
|
"test_other_socket"
|
|
];
|
|
|
|
enabledTestPaths = [ "tests" ];
|
|
|
|
pythonImportsCheck = [ "pytest_recording" ];
|
|
|
|
meta = {
|
|
description = "Pytest plugin that allows you recording of network interactions via VCR.py";
|
|
homepage = "https://github.com/kiwicom/pytest-recording";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ jbgosselin ];
|
|
};
|
|
}
|