nixpkgs/pkgs/development/python-modules/tempora/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

59 lines
953 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
# build time
, setuptools-scm
# runtime
, pytz
, jaraco_functools
# tests
, freezegun
, pytest-freezegun
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "tempora";
version = "5.1.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-PnxKU2mheIyIqZtr46THTAx3KNO2L9dop+gb0L4OiN8=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
jaraco_functools
pytz
];
nativeCheckInputs = [
freezegun
pytest-freezegun
pytestCheckHook
];
pythonImportsCheck = [
"tempora"
"tempora.schedule"
"tempora.timing"
"tempora.utc"
];
meta = with lib; {
description = "Objects and routines pertaining to date and time";
homepage = "https://github.com/jaraco/tempora";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}