depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-base-url/default.nix
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

65 lines
1.2 KiB
Nix

{ lib
, fetchFromGitHub
, buildPythonPackage
, poetry-core
, pytest
, pytest-localserver
, requests
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pytest-base-url";
version = "2.0.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pytest-dev";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-v6pLejWNeb9Do6x2EJqmLKj8DNqcMtmYIs+7iDYsbjk=";
};
nativeBuildInputs = [
poetry-core
];
buildInputs = [
pytest
];
propagatedBuildInputs = [
requests
];
__darwinAllowLocalNetworking = true;
nativeCheckInputs = [
pytestCheckHook
pytest-localserver
];
pytestFlagsArray = [
"tests"
];
disabledTests = [
# should be xfail? or mocking doesn't work
"test_url_fails"
];
pythonImportsCheck = [
"pytest_base_url"
];
meta = with lib; {
description = "pytest plugin for URL based tests";
homepage = "https://github.com/pytest-dev/pytest-base-url";
changelog = "https://github.com/pytest-dev/pytest-base-url/blob/v${version}/CHANGES.rst";
license = licenses.mpl20;
maintainers = with maintainers; [ sephi ];
};
}