blob: f52c467fd3dd25f6b6f8d6fdca4b3212461cd92d (
about) (
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 = with lib; {
description = "Utilities for working with datetime objects";
homepage = "https://github.com/jmcantrell/python-dateutils";
license = licenses.bsd0;
maintainers = [ ];
};
}
|