blob: 323a4e05ec32f16029949bfec5a973c99dd21383 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
python-dateutil,
pytz,
}:
buildPythonPackage rec {
pname = "dateutils";
version = "0.6.12";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-A92QvLIVQb1OtLATY35PG1+USIHEbMbktnpgWeNw4/E=";
};
propagatedBuildInputs = [
python-dateutil
pytz
];
pythonImportsCheck = [ "dateutils" ];
meta = {
description = "Utilities for working with datetime objects";
homepage = "https://github.com/jmcantrell/python-dateutils";
license = lib.licenses.bsd0;
maintainers = [ ];
};
}
|