2018-04-03 13:21:07 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, six }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-dateutil";
|
2018-06-12 17:46:59 +01:00
|
|
|
version = "2.7.3";
|
2018-04-03 13:21:07 +01:00
|
|
|
disabled = isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 17:46:59 +01:00
|
|
|
sha256 = "e27001de32f627c22380a688bcc43ce83504a7bc5da472209b4c70f02829f0b8";
|
2018-04-03 13:21:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Powerful extensions to the standard datetime module";
|
|
|
|
homepage = https://pypi.python.org/pypi/python-dateutil;
|
|
|
|
license = "BSD-style";
|
|
|
|
};
|
|
|
|
}
|