pythonPackages.dateutil_1_5: Move to own file

This commit is contained in:
Elis Hirwing
2018-04-03 14:21:07 +02:00
committed by Frederik Rietdijk
parent b3d8cb9051
commit 7ebc5dfad2
2 changed files with 21 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, six }:
buildPythonPackage rec {
pname = "python-dateutil";
version = "1.5";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "02dhw57jf5kjcp7ng1if7vdrbnlpb9yjmz7wygwwvf3gni4766bg";
};
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "Powerful extensions to the standard datetime module";
homepage = https://pypi.python.org/pypi/python-dateutil;
license = "BSD-style";
};
}