python3Packages.convertdate: 2.3.1 -> 2.3.2

This commit is contained in:
Fabian Affolter 2021-03-14 00:51:49 +01:00
parent c47eacf4cc
commit dcbfa026a3

View File

@ -9,16 +9,15 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "convertdate"; pname = "convertdate";
version = "2.3.1"; version = "2.3.2";
disabled = isPy27; disabled = isPy27;
# Tests are not available in the PyPI tarball so use GitHub instead. # Tests are not available in the PyPI tarball so use GitHub instead.
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "fitnr"; owner = "fitnr";
repo = pname; repo = pname;
rev = version; rev = "v${version}";
sha256 = "1g8sgd3xc9viy0kb1i4xp6bdn1hzwhrnk8kmismla88scivrhq32"; sha256 = "0k7j59sbqwyi72vcjx5vsh3qb6hxfnkfjkd2i6f6lckdr1bkh7fz";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -30,6 +29,8 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ "convertdate" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/fitnr/convertdate"; homepage = "https://github.com/fitnr/convertdate";
description = "Utils for converting between date formats and calculating holidays"; description = "Utils for converting between date formats and calculating holidays";