Merge pull request #208237 from fabaff/pytest-freezer
python310Packages.pytest-freezer: init at 0.4.6
This commit is contained in:
commit
25f2749ddb
2 changed files with 54 additions and 0 deletions
52
pkgs/development/python-modules/pytest-freezer/default.nix
Normal file
52
pkgs/development/python-modules/pytest-freezer/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue