8a45d4525b
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
30 lines
781 B
Nix
30 lines
781 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, setuptools-scm, pytestCheckHook, pytest-freezegun, freezegun, backports_unittest-mock
|
|
, six, pytz, jaraco_functools, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tempora";
|
|
version = "5.0.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "aa21dd1956e29559ecb2f2f2e14fcdb950085222fbbf86e6c946b5e1a8c36b26";
|
|
};
|
|
|
|
disabled = pythonOlder "3.2";
|
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
propagatedBuildInputs = [ six pytz jaraco_functools ];
|
|
|
|
checkInputs = [
|
|
pytest-freezegun pytestCheckHook freezegun backports_unittest-mock
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Objects and routines pertaining to date and time";
|
|
homepage = "https://github.com/jaraco/tempora";
|
|
license = licenses.mit;
|
|
};
|
|
}
|