mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 09:33:41 +00:00
0215034f25
when they already rely on SRI hashes.
26 lines
603 B
Nix
26 lines
603 B
Nix
{ lib, buildPythonPackage, fetchPypi, python-dateutil, pytz }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dateutils";
|
|
version = "0.6.12";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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 ];
|
|
};
|
|
}
|