2018-07-23 22:26:04 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2019-07-21 11:21:00 +02:00
|
|
|
, setuptools_scm, pytest, freezegun, backports_unittest-mock
|
2018-07-23 22:26:04 +02:00
|
|
|
, six, pytz, jaraco_functools }:
|
2017-08-31 13:16:17 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-09-05 11:16:41 +02:00
|
|
|
pname = "tempora";
|
2019-04-16 19:15:41 +02:00
|
|
|
version = "1.14.1";
|
2017-08-31 13:16:17 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-16 19:15:41 +02:00
|
|
|
sha256 = "cb60b1d2b1664104e307f8e5269d7f4acdb077c82e35cd57246ae14a3427d2d6";
|
2017-08-31 13:16:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ setuptools_scm ];
|
|
|
|
|
2018-07-23 22:26:04 +02:00
|
|
|
propagatedBuildInputs = [ six pytz jaraco_functools ];
|
|
|
|
|
2019-07-21 11:21:00 +02:00
|
|
|
checkInputs = [ pytest freezegun backports_unittest-mock ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
substituteInPlace pytest.ini --replace "--flake8" ""
|
|
|
|
pytest
|
|
|
|
'';
|
|
|
|
|
2018-07-23 22:26:04 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Objects and routines pertaining to date and time";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/jaraco/tempora";
|
2018-07-23 22:26:04 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
2017-08-31 13:16:17 +02:00
|
|
|
}
|