depot/third_party/nixpkgs/pkgs/development/python-modules/tempora/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

55 lines
1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, freezegun
, jaraco-functools
, pytest-freezegun
, pytestCheckHook
, pythonOlder
, pytz
, setuptools-scm
}:
buildPythonPackage rec {
pname = "tempora";
version = "5.5.1";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-ortR4hIZdtkxNHs+QzkXw2S4P91fZO8nM2yGW/H7D3U=";
};
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";
mainProgram = "calc-prorate";
homepage = "https://github.com/jaraco/tempora";
changelog = "https://github.com/jaraco/tempora/blob/v${version}/NEWS.rst";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}