Merge pull request #120250 from fabaff/hdate

This commit is contained in:
Martin Weinelt 2021-05-07 13:14:50 +02:00 committed by GitHub
commit 860b457585
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 67 additions and 1 deletions

View file

@ -0,0 +1,63 @@
{ lib
, astral
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, poetry-core
, pytestCheckHook
, pythonOlder
, pytz
}:
buildPythonPackage rec {
pname = "hdate";
version = "0.10.2";
disabled = pythonOlder "3.6";
format = "pyproject";
src = fetchFromGitHub {
owner = "py-libhdate";
repo = "py-libhdate";
rev = "v${version}";
sha256 = "07b0c7q8w6flj4q72v58d3wymsxfp5qz8z97qhhc2977mjx5fsxd";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
astral
pytz
];
checkInputs = [
pytestCheckHook
];
patches = [
# Version was not updated for the release
(fetchpatch {
name = "update-version.patch";
url = "https://github.com/py-libhdate/py-libhdate/commit/b8186a891b29fed99def5ce0985ee0ae1e0dd77e.patch";
sha256 = "1pmhgh57x9390ff5gyisng0l6b79sd6dxmf172hpk1gr03c3hv98";
})
];
postPatch = ''
substituteInPlace pyproject.toml --replace "^2020.5" ">=2020.5"
'';
pytestFlagsArray = [
"tests"
];
pythonImportsCheck = [ "hdate" ];
meta = with lib; {
description = "Python module for Jewish/Hebrew date and Zmanim";
homepage = "https://github.com/py-libhdate/py-libhdate";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -413,7 +413,7 @@
"itach" = ps: with ps; [ ]; # missing inputs: pyitachip2ir
"itunes" = ps: with ps; [ ];
"izone" = ps: with ps; [ ]; # missing inputs: python-izone
"jewish_calendar" = ps: with ps; [ ]; # missing inputs: hdate
"jewish_calendar" = ps: with ps; [ hdate ];
"joaoapps_join" = ps: with ps; [ ]; # missing inputs: python-join-api
"juicenet" = ps: with ps; [ ]; # missing inputs: python-juicenet
"kaiterra" = ps: with ps; [ ]; # missing inputs: kaiterra-async-client

View file

@ -272,6 +272,7 @@ in with py.pkgs; buildPythonApplication rec {
"intent"
"intent_script"
"ipp"
"jewish_calendar"
"kmtronic"
"knx"
"kodi"

View file

@ -2985,6 +2985,8 @@ in {
hachoir = callPackage ../development/python-modules/hachoir { };
hdate = callPackage ../development/python-modules/hdate { };
ha-ffmpeg = callPackage ../development/python-modules/ha-ffmpeg { };
halo = callPackage ../development/python-modules/halo { };