2018-06-03 05:42:53 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, six, setuptools_scm }:
|
2017-03-01 12:54:34 -08:00
|
|
|
buildPythonPackage rec {
|
2017-09-05 02:16:41 -07:00
|
|
|
pname = "python-dateutil";
|
2018-11-04 02:34:56 -08:00
|
|
|
version = "2.7.5";
|
2017-03-01 12:54:34 -08:00
|
|
|
|
2017-09-05 02:16:41 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 02:34:56 -08:00
|
|
|
sha256 = "88f9287c0174266bb0d8cedd395cfba9c58e87e5ad86b2ce58859bc11be3cf02";
|
2017-03-01 12:54:34 -08:00
|
|
|
};
|
|
|
|
|
2018-06-03 05:42:53 -07:00
|
|
|
propagatedBuildInputs = [ six setuptools_scm ];
|
2017-03-01 12:54:34 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Powerful extensions to the standard datetime module";
|
2017-11-10 13:13:27 -08:00
|
|
|
homepage = https://pypi.python.org/pypi/python-dateutil;
|
2017-03-01 12:54:34 -08:00
|
|
|
license = "BSD-style";
|
|
|
|
};
|
|
|
|
}
|