Files
nixpkgs/pkgs/development/python-modules/dateutil/default.nix
T

20 lines
510 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, six }:
2017-03-01 21:54:34 +01:00
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
name = "${pname}-${version}";
pname = "python-dateutil";
version = "2.6.1";
2017-03-01 21:54:34 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "1jkahssf0ir5ssxc3ydbp8cpv77limn8d4s77szb2nrgl2r3h749";
2017-03-01 21:54:34 +01:00
};
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "Powerful extensions to the standard datetime module";
homepage = https://pypi.python.org/pypi/python-dateutil;
2017-03-01 21:54:34 +01:00
license = "BSD-style";
};
}