lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.hijridate: rename from hijri-converter; 2.3.2.post1 -> 2.5.0

+42 -35
+2 -2
pkgs/development/python-modules/dateparser/default.nix
··· 8 8 pytz, 9 9 regex, 10 10 tzlocal, 11 - hijri-converter, 11 + hijridate, 12 12 convertdate, 13 13 fasttext, 14 14 langdetect, ··· 46 46 47 47 optional-dependencies = { 48 48 calendars = [ 49 - hijri-converter 49 + hijridate 50 50 convertdate 51 51 ]; 52 52 fasttext = [ fasttext ];
-32
pkgs/development/python-modules/hijri-converter/default.nix
··· 1 - { 2 - lib, 3 - buildPythonPackage, 4 - fetchPypi, 5 - pytestCheckHook, 6 - pythonOlder, 7 - }: 8 - 9 - buildPythonPackage rec { 10 - pname = "hijri-converter"; 11 - version = "2.3.2.post1"; 12 - format = "setuptools"; 13 - 14 - disabled = pythonOlder "3.7"; 15 - 16 - src = fetchPypi { 17 - inherit pname version; 18 - hash = "sha256-mGZXzNg6W+ryM85aIZZFdH6IXEXUgzvSqPobkn+jlXA="; 19 - }; 20 - 21 - nativeCheckInputs = [ pytestCheckHook ]; 22 - 23 - pythonImportsCheck = [ "hijri_converter" ]; 24 - 25 - meta = with lib; { 26 - description = "Accurate Hijri-Gregorian date converter based on the Umm al-Qura calendar"; 27 - homepage = "https://github.com/dralshehri/hijri-converter"; 28 - changelog = "https://github.com/dralshehri/hijridate/blob/v${version}/CHANGELOG.md"; 29 - license = licenses.mit; 30 - maintainers = with maintainers; [ hexa ]; 31 - }; 32 - }
+38
pkgs/development/python-modules/hijridate/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + hatchling, 6 + hatch-fancy-pypi-readme, 7 + pytestCheckHook, 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "hijridate"; 12 + version = "2.5.0"; 13 + pyproject = true; 14 + 15 + src = fetchFromGitHub { 16 + owner = "dralshehri"; 17 + repo = "hijridate"; 18 + tag = "v${version}"; 19 + hash = "sha256-IT5OnFDuNQ9tMfuZ5pFqnAPd7nspIfAmeN6Pqtn0OwA="; 20 + }; 21 + 22 + build-system = [ 23 + hatchling 24 + hatch-fancy-pypi-readme 25 + ]; 26 + 27 + nativeCheckInputs = [ pytestCheckHook ]; 28 + 29 + pythonImportsCheck = [ "hijridate" ]; 30 + 31 + meta = with lib; { 32 + description = "Accurate Hijri-Gregorian date converter based on the Umm al-Qura calendar"; 33 + homepage = "https://github.com/dralshehri/hijridate"; 34 + changelog = "https://github.com/dralshehri/hijridate/blob/v${version}/CHANGELOG.md"; 35 + license = licenses.mit; 36 + maintainers = with maintainers; [ hexa ]; 37 + }; 38 + }
+1
pkgs/top-level/python-aliases.nix
··· 326 326 hcs_utils = hcs-utils; # added 2024-01-06 327 327 hdlparse = throw "hdlparse has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 328 328 hglib = python-hglib; # added 2023-10-13 329 + hijri-converter = hijridate; # added 2025-08-07 329 330 hkdf = throw "hkdf has been removed, as it is no longer maintained upstream."; # added 2024-10-04 330 331 homeassistant-bring-api = bring-api; # added 2024-04-11 331 332 homeassistant-pyozw = throw "homeassistant-pyozw has been removed, as it was packaged for home-assistant which has removed it as a dependency."; # added 2024-01-05
+1 -1
pkgs/top-level/python-packages.nix
··· 6546 6546 6547 6547 hightime = callPackage ../development/python-modules/hightime { }; 6548 6548 6549 - hijri-converter = callPackage ../development/python-modules/hijri-converter { }; 6549 + hijridate = callPackage ../development/python-modules/hijridate { }; 6550 6550 6551 6551 hikari = callPackage ../development/python-modules/hikari { }; 6552 6552