Merge pull request #211905 from fabaff/hdate-fix

python310Packages.hdate: update postPatch
This commit is contained in:
Jonas Heinrich 2023-01-21 20:03:14 +01:00 committed by GitHub
commit f6abad04fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,16 +11,23 @@
buildPythonPackage rec {
pname = "hdate";
version = "0.10.4";
disabled = pythonOlder "3.6";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "py-libhdate";
repo = "py-libhdate";
rev = "v${version}";
sha256 = "sha256-NF2ZA9ruW7sL2tLY11VAtyPRxGg2o5/mpv3ZsH/Zxb8=";
rev = "refs/tags/v${version}";
hash = "sha256-NF2ZA9ruW7sL2tLY11VAtyPRxGg2o5/mpv3ZsH/Zxb8=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'pytz = ">= 2020.0"' 'pytz = "*"' \
--replace 'astral = {version = "^2.2", python = "^3.6"}' 'astral = "*"'
'';
nativeBuildInputs = [
poetry-core
];
@ -34,19 +41,18 @@ buildPythonPackage rec {
pytestCheckHook
];
postPatch = ''
substituteInPlace pyproject.toml --replace "^2020.5" ">=2020.5"
'';
pytestFlagsArray = [
"tests"
];
pythonImportsCheck = [ "hdate" ];
pythonImportsCheck = [
"hdate"
];
meta = with lib; {
description = "Python module for Jewish/Hebrew date and Zmanim";
homepage = "https://github.com/py-libhdate/py-libhdate";
changelog = "https://github.com/py-libhdate/py-libhdate/releases/tag/v${version}";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};