depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-freezer/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

52 lines
989 B
Nix

{ 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
];
nativeCheckInputs = [
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 ];
};
}