nixpkgs/pkgs/development/python-modules/iso8601/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

48 lines
783 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, hypothesis
, poetry-core
, pytestCheckHook
, pytz
, pythonOlder
}:
buildPythonPackage rec {
pname = "iso8601";
version = "1.1.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-MoEee4He7iBj6m0ulPiBmobR84EeSdI2I6QfqDK+8D8=";
};
nativeBuildInputs = [
poetry-core
];
nativeCheckInputs = [
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 ];
};
}