8 buildPythonPackage rec {
9 pname = "python-dateutil";
13 inherit pname version;
14 sha256 = "73ebfe9dbf22e832286dafa60473e4cd239f8592f699aa5adaf10050e6e1823c";
17 nativeBuildInputs = [ setuptools-scm ];
19 propagatedBuildInputs = [ six ];
21 # cyclic dependency: tests need freezegun, which depends on python-dateutil
24 pythonImportsCheck = [
27 "dateutil.relativedelta"
35 description = "Powerful extensions to the standard datetime module";
36 homepage = "https://github.com/dateutil/dateutil/";
37 license = with licenses; [ asl20 bsd3 ];
38 maintainers = with maintainers; [ dotlambda ];