about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dateutil/1_5.nix
blob: 6580b0e10070ac2df210c8802416478357566b1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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";
  };
}