blob: ded32b61f2ca49fcc72bd52456295c758365e16b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pymeeus,
pytz,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "convertdate";
version = "2.4.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "fitnr";
repo = "convertdate";
rev = "v${version}";
hash = "sha256-iOHK3UJulXJJR50nhiVgfk3bt+CAtG3BRySJ8DkBuJE=";
};
propagatedBuildInputs = [
pymeeus
pytz
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "convertdate" ];
meta = {
description = "Utils for converting between date formats and calculating holidays";
mainProgram = "censusgeocode";
homepage = "https://github.com/fitnr/convertdate";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jluttine ];
};
}
|