summary refs log tree commit diff
path: root/pkgs/development/python-modules/iso8601/default.nix
blob: 3a255ac047e5db33d02c177abd368c7a92b39044 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "iso8601";
  version = "0.1.16";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-NlMvd8yABZTo8WZB7a5/G695MvBdjlCFRblfxTxtyFs=";
  };

  checkInputs = [
    pytestCheckHook
  ];

  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 ];
  };
}