summary refs log tree commit diff
path: root/pkgs/development/python-modules/dateutil/default.nix
blob: b980381edbb14cd7b863da5214a3696ce362ca7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "python-dateutil";
  version = "2.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1jkahssf0ir5ssxc3ydbp8cpv77limn8d4s77szb2nrgl2r3h749";
  };

  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";
  };
}