8 buildPythonPackage rec {
9 pname = "python-dateutil";
13 inherit pname version;
14 sha256 = "sha256-ASPKzBYnrhnd88J6XeW9Z+5FhvvdZEDZdI+Ku0g9PoY=";
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 ];