python3Packages.iso8601: 0.1.16 -> 1.0.2
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user