3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/dateutil/1_5.nix

21 lines
520 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPy3k, six }:
buildPythonPackage rec {
pname = "python-dateutil";
2018-06-12 17:46:59 +01:00
version = "2.7.3";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
2018-06-12 17:46:59 +01:00
sha256 = "e27001de32f627c22380a688bcc43ce83504a7bc5da472209b4c70f02829f0b8";
};
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";
};
}