python3Packages.ciso8601: 2.1.3 -> 2.2.0

This commit is contained in:
Fabian Affolter 2021-09-20 23:33:57 +02:00 committed by Martin Weinelt
parent 5e3cd48be1
commit 85e40f1bb5

View file

@ -8,23 +8,27 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "ciso8601"; pname = "ciso8601";
version = "2.1.3"; version = "2.2.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "closeio"; owner = "closeio";
repo = "ciso8601"; repo = "ciso8601";
rev = "v${version}"; rev = "v${version}";
sha256 = "0g1aiyc1ayh0rnibyy416m5mmck38ksgdm3jsy0z3rxgmgb24951"; sha256 = "sha256-TqB1tQDgCkXu+QuzP6yBEH/xHxhhD/kGR2S0I8Osc5E=";
}; };
checkInputs = [ checkInputs = [
pytz pytz
] ++ lib.optional (isPy27) unittest2; ] ++ lib.optional (isPy27) [
unittest2
];
pythonImportsCheck = [ "ciso8601" ];
meta = with lib; { meta = with lib; {
description = "Fast ISO8601 date time parser for Python written in C"; description = "Fast ISO8601 date time parser for Python written in C";
homepage = "https://github.com/closeio/ciso8601"; homepage = "https://github.com/closeio/ciso8601";
license = licenses.mit; license = licenses.mit;
maintainers = [ maintainers.mic92 ]; maintainers = with maintainers; [ mic92 ];
}; };
} }