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