python39Packages.dateutils: init at 0.6.12

This commit is contained in:
Sandro Jäckel 2021-08-31 19:02:47 +02:00 committed by Martin Weinelt
parent d779e6d217
commit 229cd3e58d
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, buildPythonPackage, fetchPypi, python-dateutil, pytz }:
buildPythonPackage rec {
pname = "dateutils";
version = "0.6.12";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-A92QvLIVQb1OtLATY35PG1+USIHEbMbktnpgWeNw4/E=";
};
propagatedBuildInputs = [
python-dateutil
pytz
];
pythonImportsCheck = [ "dateutils" ];
meta = with lib; {
description = "Utilities for working with datetime objects.";
homepage = "https://github.com/jmcantrell/python-dateutils";
license = licenses.bsd0;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}

View File

@ -1858,6 +1858,8 @@ in {
dateparser = callPackage ../development/python-modules/dateparser { };
dateutils = callPackage ../development/python-modules/dateutils { };
datrie = callPackage ../development/python-modules/datrie { };
dawg-python = callPackage ../development/python-modules/dawg-python { };