Merge pull request #208237 from fabaff/pytest-freezer

python310Packages.pytest-freezer: init at 0.4.6
This commit is contained in:
Fabian Affolter 2022-12-30 10:20:31 +01:00 committed by GitHub
commit 25f2749ddb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 54 additions and 0 deletions

View file

@ -0,0 +1,52 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, freezegun
, hatchling
, pytest
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pytest-freezer";
version = "0.4.6";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "pytest-dev";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-0JZv6MavRceAV+ZOetCVxJEyttd5W3PCts6Fz2KQsh0=";
};
nativeBuildInputs = [
hatchling
];
buildInputs = [
pytest
];
propagatedBuildInputs = [
freezegun
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"pytest_freezer"
];
meta = with lib; {
description = "Pytest plugin providing a fixture interface for spulec/freezegun";
homepage = "https://github.com/pytest-dev/pytest-freezer";
changelog = "https://github.com/pytest-dev/pytest-freezer/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -8884,6 +8884,8 @@ self: super: with self; {
pytest-freezegun = callPackage ../development/python-modules/pytest-freezegun { };
pytest-freezer = callPackage ../development/python-modules/pytest-freezer { };
pytest-golden = callPackage ../development/python-modules/pytest-golden { };
pytest-helpers-namespace = callPackage ../development/python-modules/pytest-helpers-namespace { };