nixpkgs/pkgs/development/python-modules/iso8601/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
777 B
Nix
Raw Normal View History

2017-12-31 10:48:00 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, hypothesis
, poetry-core
, pytestCheckHook
, pytz
, pythonOlder
2017-12-31 10:48:00 +00:00
}:
buildPythonPackage rec {
pname = "iso8601";
version = "1.1.0";
format = "pyproject";
disabled = pythonOlder "3.7";
2017-12-31 10:48:00 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-MoEee4He7iBj6m0ulPiBmobR84EeSdI2I6QfqDK+8D8=";
2017-12-31 10:48:00 +00:00
};
nativeBuildInputs = [
poetry-core
];
checkInputs = [
hypothesis
pytestCheckHook
pytz
];
2017-12-31 10:48:00 +00:00
pytestFlagsArray = [
"iso8601"
];
2017-12-31 10:48:00 +00:00
pythonImportsCheck = [
"iso8601"
];
meta = with lib; {
2017-12-31 10:48:00 +00:00
description = "Simple module to parse ISO 8601 dates";
homepage = "https://pyiso8601.readthedocs.io/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
2017-12-31 10:48:00 +00:00
};
}