My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/iso8601/default.nix

47 lines
779 B

{ lib
, buildPythonPackage
, fetchPypi
, hypothesis
, poetry-core
, pytestCheckHook
, pytz
, pythonOlder
}:
buildPythonPackage rec {
pname = "iso8601";
version = "1.0.2";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-J/UDIg5oRdnblU+yErlbA2LYt+bBsjJqhwYcPek1lLE=";
};
nativeBuildInputs = [
poetry-core
];
checkInputs = [
hypothesis
pytestCheckHook
pytz
];
pytestFlagsArray = [
"iso8601"
];
pythonImportsCheck = [
"iso8601"
];
meta = with lib; {
description = "Simple module to parse ISO 8601 dates";
homepage = "https://pyiso8601.readthedocs.io/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}