nixpkgs/pkgs/development/python-modules/tempora/default.nix

37 lines
906 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi
2020-06-25 10:24:38 +01:00
, setuptools_scm, pytest, pytest-freezegun, freezegun, backports_unittest-mock
2020-08-18 08:53:53 +01:00
, six, pytz, jaraco_functools, pythonOlder
, pytest-flake8, pytestcov, pytest-black, pytest-mypy
}:
buildPythonPackage rec {
pname = "tempora";
version = "4.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "9af06854fafb26d3d40d3dd6402e8baefaf57f90e48fdc9a94f6b22827a60fb3";
};
disabled = pythonOlder "3.2";
2020-06-22 23:33:46 +01:00
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ six pytz jaraco_functools ];
2020-06-25 10:24:38 +01:00
checkInputs = [
pytest-freezegun pytest freezegun backports_unittest-mock
2020-08-18 08:53:53 +01:00
pytest-flake8 pytestcov pytest-black pytest-mypy
2020-06-25 10:24:38 +01:00
];
2019-07-21 10:21:00 +01:00
checkPhase = ''
2020-06-25 10:24:38 +01:00
pytest
2019-07-21 10:21:00 +01:00
'';
meta = with lib; {
description = "Objects and routines pertaining to date and time";
homepage = "https://github.com/jaraco/tempora";
license = licenses.mit;
};
}