1{ stdenv, buildPythonPackage, fetchPypi, six }: 2buildPythonPackage rec { 3 name = "${pname}-${version}"; 4 pname = "python-dateutil"; 5 version = "2.6.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1jkahssf0ir5ssxc3ydbp8cpv77limn8d4s77szb2nrgl2r3h749"; 10 }; 11 12 propagatedBuildInputs = [ six ]; 13 14 meta = with stdenv.lib; { 15 description = "Powerful extensions to the standard datetime module"; 16 homepage = https://pypi.python.org/pypi/python-dateutil; 17 license = "BSD-style"; 18 }; 19}