ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / iso8601 / default.nix
blobe189e3778bc847ab3652a2c2fc37f91bcd2349ed
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , hypothesis
5 , poetry-core
6 , pytestCheckHook
7 , pytz
8 , pythonOlder
9 }:
11 buildPythonPackage rec {
12   pname = "iso8601";
13   version = "1.1.0";
14   format = "pyproject";
16   disabled = pythonOlder "3.7";
18   src = fetchPypi {
19     inherit pname version;
20     hash = "sha256-MoEee4He7iBj6m0ulPiBmobR84EeSdI2I6QfqDK+8D8=";
21   };
23   nativeBuildInputs = [
24     poetry-core
25   ];
27   checkInputs = [
28     hypothesis
29     pytestCheckHook
30     pytz
31   ];
33   pytestFlagsArray = [
34     "iso8601"
35   ];
37   pythonImportsCheck = [
38     "iso8601"
39   ];
41   meta = with lib; {
42     description = "Simple module to parse ISO 8601 dates";
43     homepage = "https://pyiso8601.readthedocs.io/";
44     license = with licenses; [ mit ];
45     maintainers = with maintainers; [ fab ];
46   };