Merge pull request #23436 from lsix/update_dateutil

pythonPackages.dateutil: 2.5.3 -> 2.6.0
This commit is contained in:
Michael Raskin
2017-03-18 18:44:40 +01:00
committed by GitHub
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";
};
}