summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-dateutil/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-dateutil/default.nix')
-rw-r--r--pkgs/development/python-modules/python-dateutil/default.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/python-dateutil/default.nix b/pkgs/development/python-modules/python-dateutil/default.nix
index dd7cc0f2ea1a..71def22fc9c5 100644
--- a/pkgs/development/python-modules/python-dateutil/default.nix
+++ b/pkgs/development/python-modules/python-dateutil/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, setuptools-scm
-, six
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ setuptools-scm,
+ six,
}:
buildPythonPackage rec {
@@ -41,7 +42,10 @@ buildPythonPackage rec {
changelog = "https://github.com/dateutil/dateutil/blob/${version}/NEWS";
description = "Powerful extensions to the standard datetime module";
homepage = "https://github.com/dateutil/dateutil/";
- license = with licenses; [ asl20 bsd3 ];
+ license = with licenses; [
+ asl20
+ bsd3
+ ];
maintainers = with maintainers; [ dotlambda ];
};
}