ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / recipe-scrapers / default.nix
blob897a8239f0fa6263aa9abd0aa2169557cf8ef61b
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , beautifulsoup4
5 , extruct
6 , language-tags
7 , regex
8 , requests
9 , pytestCheckHook
10 , responses
13 buildPythonPackage rec {
14   pname = "recipe-scrapers";
15   version = "14.14.0";
17   src = fetchFromGitHub {
18     owner = "hhursev";
19     repo = "recipe-scrapers";
20     rev = version;
21     sha256 = "sha256-3qrjNd1jX4JP3qG9YX8MQqwPh8cvfkZa1tEk0uCwego=";
22   };
24   propagatedBuildInputs = [
25     beautifulsoup4
26     extruct
27     language-tags
28     regex
29     requests
30   ];
32   checkInputs = [
33     pytestCheckHook
34     responses
35   ];
37   disabledTestPaths = [
38     # This is not actual code, just some pre-written boiler-plate template
39     "templates/test_scraper.py"
40   ];
42   pythonImportsCheck = [ "recipe_scrapers" ];
44   meta = with lib; {
45     description = "Python package for scraping recipes data ";
46     homepage = "https://github.com/hhursev/recipe-scrapers";
47     license = licenses.mit;
48     maintainers = with maintainers; [ ambroisie ];
49   };