My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/tempora/default.nix

59 lines
947 B

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
# build time
, setuptools-scm
# runtime
, pytz
, jaraco_functools
# tests
, freezegun
, pytest-freezegun
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "tempora";
version = "5.0.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-y6Dxl6ZIg78+c2V++8AyTVvxcXnndpsThbTXXSbNkSc=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
jaraco_functools
pytz
];
checkInputs = [
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; [ ];
};
}