blob: 52b87941b582106880f106f0da15a96a1ef032d5 (
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
31
32
33
34
35
36
37
38
39
40
41
42
|
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
, pytz
}:
buildPythonPackage rec {
pname = "ciso8601";
version = "2.3.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "closeio";
repo = "ciso8601";
rev = "refs/tags/v${version}";
sha256 = "sha256-qTpt91Wf3L6Jl7FU8sn9PvGMRd/cjhQ1mQvUaQeLFQU=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
pytz
];
pytestFlagsArray = [
"tests/tests.py"
];
pythonImportsCheck = [ "ciso8601" ];
meta = with lib; {
description = "Fast ISO8601 date time parser for Python written in C";
homepage = "https://github.com/closeio/ciso8601";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
};
}
|