Merge pull request #332206 from r-ryantm/auto-update/python312Packages.recipe-scrapers

python312Packages.recipe-scrapers: 14.56.0 -> 15.0.0, mealie: 1.5.16 -> 1.5.19
This commit is contained in:
Sandro 2024-08-25 23:30:27 +02:00 committed by GitHub
commit e6cbe474d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 15 additions and 5 deletions

View File

@ -1,15 +1,15 @@
{ lib, fetchFromGitHub }:
rec {
version = "1.5.16";
version = "1.5.19";
src = fetchFromGitHub {
owner = "TandoorRecipes";
repo = "recipes";
rev = version;
hash = "sha256-A5cPO3uybTmAV8zWY90S9vtU/tLgbh1Iqhi+ty0RLhM=";
hash = "sha256-HsBy2HzxBpnwh2RqFQJG0HYReWI0a7E7KsJ5TD+GokY=";
};
yarnHash = "sha256-OAgVaXWTVlKqIgDgKNT1MWN3dYzTqrAGgNAnXLDHE+I=";
yarnHash = "sha256-BnOw9QRXRRoM+CW6OGbjWhLo4h6JX3ZR1kJd8Z/w02M=";
meta = with lib; {
homepage = "https://tandoor.dev/";

View File

@ -165,8 +165,11 @@ python.pkgs.pythonPackages.buildPythonPackage rec {
# flaky
disabledTests = [
"test_add_duplicate"
"test_reset_inherit_space_fields"
"test_search_count"
"test_url_import_regex_replace"
"test_url_validator"
"test_delete"
];

View File

@ -11,11 +11,12 @@
responses,
setuptools,
pythonOlder,
nixosTests,
}:
buildPythonPackage rec {
pname = "recipe-scrapers";
version = "14.56.0";
version = "15.0.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -24,7 +25,7 @@ buildPythonPackage rec {
owner = "hhursev";
repo = "recipe-scrapers";
rev = "refs/tags/${version}";
hash = "sha256-+9oQLCuR+rRCG5tnyofHd8WMkQ5QPsWfLCnwIDU5d9o=";
hash = "sha256-7tCLzMj5/K+7i8a1hFcilOgU+0Y5R6VdYJK5CK06LLw=";
};
nativeBuildInputs = [ setuptools ];
@ -49,6 +50,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "recipe_scrapers" ];
passthru = {
tests = {
inherit (nixosTests) mealie tandoor-recipes;
};
};
meta = with lib; {
description = "Python package for scraping recipes data";
homepage = "https://github.com/hhursev/recipe-scrapers";