about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/ciso8601/default.nix
blob: d0de4b320e8dc03e214d99dacf0d18ce823a873e (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
, fetchFromGitHub
, pytz
, unittest2
, isPy27
}:

buildPythonPackage rec {
  pname = "ciso8601";
  version = "2.1.3";

  src = fetchFromGitHub {
    owner = "closeio";
    repo = "ciso8601";
    rev = "v${version}";
    sha256 = "0g1aiyc1ayh0rnibyy416m5mmck38ksgdm3jsy0z3rxgmgb24951";
  };

  checkInputs = [
    pytz
  ] ++ lib.optional (isPy27) unittest2;

  meta = with lib; {
    description = "Fast ISO8601 date time parser for Python written in C";
    homepage = "https://github.com/closeio/ciso8601";
    license = licenses.mit;
    maintainers = [ maintainers.mic92 ];
  };
}