{ lib , buildPythonPackage , isPy27 , fetchFromGitHub , pymeeus , pytz , pytestCheckHook }: buildPythonPackage rec { pname = "convertdate"; version = "2.3.2"; disabled = isPy27; # Tests are not available in the PyPI tarball so use GitHub instead. src = fetchFromGitHub { owner = "fitnr"; repo = pname; rev = "v${version}"; sha256 = "0k7j59sbqwyi72vcjx5vsh3qb6hxfnkfjkd2i6f6lckdr1bkh7fz"; }; propagatedBuildInputs = [ pymeeus pytz ]; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "convertdate" ]; meta = with lib; { homepage = "https://github.com/fitnr/convertdate"; description = "Utils for converting between date formats and calculating holidays"; license = licenses.mit; maintainers = with maintainers; [ jluttine ]; }; }