about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dateutil
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2017-03-01 21:54:34 +0100
committerLancelot SIX <lsix@lancelotsix.com>2017-03-01 21:54:34 +0100
commit247408d26fc200ba93fcb64e39114a4a2c87d11c (patch)
treedc0046a2d8140f2052f5441797eeb2f43dafc619 /pkgs/development/python-modules/dateutil
parent8dcfa44a538396939f5b777b1ef43a453aeecaa6 (diff)
pythonPackages.dateutil: 2.5.3 -> 2.6.0
Diffstat (limited to 'pkgs/development/python-modules/dateutil')
-rw-r--r--pkgs/development/python-modules/dateutil/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dateutil/default.nix b/pkgs/development/python-modules/dateutil/default.nix
new file mode 100644
index 0000000000000..8e05ee343573c
--- /dev/null
+++ b/pkgs/development/python-modules/dateutil/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, buildPythonPackage, fetchurl, six }:
+buildPythonPackage rec {
+  name = "dateutil-${version}";
+  version = "2.6.0";
+
+  src = fetchurl {
+    url = "mirror://pypi/p/python-dateutil/python-${name}.tar.gz";
+    sha256 = "1lhq0hxjc3cfha101q02ld5ijlpfyjn2w1yh7wvpiy367pgzi8k2";
+  };
+
+  propagatedBuildInputs = [ six ];
+
+  meta = with stdenv.lib; {
+    description = "Powerful extensions to the standard datetime module";
+    homepage = http://pypi.python.org/pypi/python-dateutil;
+    license = "BSD-style";
+  };
+}