Merge pull request #148397 from fabaff/bump-iso8601

python3Packages.iso8601: 0.1.16 -> 1.0.2
This commit is contained in:
Fabian Affolter
2021-12-08 10:40:41 +01:00
committed by GitHub
@@ -1,25 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, hypothesis
, pytestCheckHook
, pytz
, pythonOlder
}:
buildPythonPackage rec {
pname = "iso8601";
version = "0.1.16";
version = "1.0.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-NlMvd8yABZTo8WZB7a5/G695MvBdjlCFRblfxTxtyFs=";
sha256 = "sha256-J/UDIg5oRdnblU+yErlbA2LYt+bBsjJqhwYcPek1lLE=";
};
checkInputs = [
hypothesis
pytestCheckHook
pytz
];
pytestFlagsArray = [ "iso8601" ];
pytestFlagsArray = [
"iso8601"
];
pythonImportsCheck = [ "iso8601" ];
pythonImportsCheck = [
"iso8601"
];
meta = with lib; {
description = "Simple module to parse ISO 8601 dates";