mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-21 08:01:31 +00:00
python39Packages.dateutils: init at 0.6.12
This commit is contained in:
committed by
Martin Weinelt
parent
d779e6d217
commit
229cd3e58d
25
pkgs/development/python-modules/dateutils/default.nix
Normal file
25
pkgs/development/python-modules/dateutils/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user