pythonPackages.dateutil: 2.5.3 -> 2.6.0

This commit is contained in:
Lancelot SIX 2017-03-01 21:54:34 +01:00
parent 8dcfa44a53
commit 247408d26f
No known key found for this signature in database
GPG key ID: 02E1542BA66FB047
2 changed files with 19 additions and 17 deletions

View file

@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchurl, six }:
buildPythonPackage rec {
name = "dateutil-${version}";
version = "2.6.0";
src = fetchurl {
url = "mirror://pypi/p/python-dateutil/python-${name}.tar.gz";
sha256 = "1lhq0hxjc3cfha101q02ld5ijlpfyjn2w1yh7wvpiy367pgzi8k2";
};
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "Powerful extensions to the standard datetime module";
homepage = http://pypi.python.org/pypi/python-dateutil;
license = "BSD-style";
};
}

View file

@ -5938,23 +5938,7 @@ in {
};
};
dateutil = buildPythonPackage (rec {
name = "dateutil-${version}";
version = "2.5.3";
src = pkgs.fetchurl {
url = "mirror://pypi/p/python-dateutil/python-${name}.tar.gz";
sha256 = "1v9j9fmf8g911yg6k01xa2db6dx3wv73zkk7fncsj7vagjqgs20l";
};
propagatedBuildInputs = with self; [ self.six ];
meta = {
description = "Powerful extensions to the standard datetime module";
homepage = http://pypi.python.org/pypi/python-dateutil;
license = "BSD-style";
};
});
dateutil = callPackage ../development/python-modules/dateutil { };
# csvkit 0.9.1 needs dateutil==2.2
dateutil_2_2 = buildPythonPackage (rec {