biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / python-datemath / default.nix
blobefa1e5aed576ce21aec6da89c91326f7df7f3e6d
2   lib,
3   arrow,
4   buildPythonPackage,
5   fetchFromGitHub,
6   freezegun,
7   pytestCheckHook,
8   pythonOlder,
9   pytz,
10   setuptools,
13 buildPythonPackage rec {
14   pname = "python-datemath";
15   version = "3.0.3";
16   pyproject = true;
18   disabled = pythonOlder "3.8";
20   src = fetchFromGitHub {
21     owner = "nickmaccarthy";
22     repo = "python-datemath";
23     rev = "refs/tags/v${version}";
24     hash = "sha256-VwdY6Gmbmoy7EKZjUlWj56uSiE0OdegPiQv+rmigkq8=";
25   };
27   build-system = [ setuptools ];
29   dependencies = [ arrow ];
31   nativeCheckInputs = [
32     freezegun
33     pytestCheckHook
34     pytz
35   ];
37   pytestFlagsArray = [ "tests.py" ];
39   pythonImportsCheck = [ "datemath" ];
41   meta = {
42     description = "Python module to emulate the date math used in SOLR and Elasticsearch";
43     homepage = "https://github.com/nickmaccarthy/python-datemath";
44     changelog = "https://github.com/nickmaccarthy/python-datemath/blob/v${version}/CHANGELOG.md";
45     license = with lib.licenses; [ asl20 ];
46     maintainers = with lib.maintainers; [ fab ];
47   };