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

  src = fetchPypi {
    inherit pname version;
    sha256 = "e27001de32f627c22380a688bcc43ce83504a7bc5da472209b4c70f02829f0b8";
  };

  propagatedBuildInputs = [ six setuptools_scm ];

  meta = with stdenv.lib; {
    description = "Powerful extensions to the standard datetime module";
    homepage = https://pypi.python.org/pypi/python-dateutil;
    license = "BSD-style";
  };
}