forbidden: 12.6 -> 13.2 (#400696)

authored by Fabian Affolter and committed by GitHub c94248d4 67495f67

+46 -12
+13 -12
pkgs/by-name/fo/forbidden/package.nix
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "forbidden"; 9 - version = "12.6"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "ivan-sincek"; 14 repo = "forbidden"; 15 tag = "v${version}"; 16 - hash = "sha256-KE2FHn0ocAna5ReRi9re/u8gdNVkCygSbSRj8gEudgI="; 17 }; 18 19 - build-system = with python3.pkgs; [ 20 - setuptools 21 - ]; 22 23 dependencies = with python3.pkgs; [ 24 alive-progress 25 colorama 26 pycurl 27 pyjwt 28 regex ··· 31 termcolor 32 ]; 33 34 - pythonImportsCheck = [ 35 - "forbidden" 36 - ]; 37 38 - meta = with lib; { 39 description = "Tool to bypass 4xx HTTP response status code"; 40 homepage = "https://github.com/ivan-sincek/forbidden"; 41 - changelog = "https://github.com/ivan-sincek/forbidden/releases/tag/v${version}"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ fab ]; 44 mainProgram = "forbidden"; 45 }; 46 }
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "forbidden"; 9 + version = "13.2"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "ivan-sincek"; 14 repo = "forbidden"; 15 tag = "v${version}"; 16 + hash = "sha256-DQ8zjiLTgBBoqp8AP5BYULz4KGnVEt8e7bkfYRGWvFw="; 17 }; 18 19 + build-system = with python3.pkgs; [ setuptools ]; 20 21 dependencies = with python3.pkgs; [ 22 alive-progress 23 + bot-safe-agents 24 colorama 25 + cryptography 26 pycurl 27 pyjwt 28 regex ··· 31 termcolor 32 ]; 33 34 + # Project has no tests 35 + doCheck = false; 36 + 37 + pythonImportsCheck = [ "forbidden" ]; 38 39 + meta = { 40 description = "Tool to bypass 4xx HTTP response status code"; 41 homepage = "https://github.com/ivan-sincek/forbidden"; 42 + changelog = "https://github.com/ivan-sincek/forbidden/releases/tag/${src.tag}"; 43 + license = lib.licenses.mit; 44 + maintainers = with lib.maintainers; [ fab ]; 45 mainProgram = "forbidden"; 46 }; 47 }
+31
pkgs/development/python-modules/bot-safe-agents/default.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + setuptools, 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "bot-safe-agents"; 10 + version = "1.0"; 11 + pyproject = true; 12 + 13 + src = fetchFromGitHub { 14 + owner = "ivan-sincek"; 15 + repo = "bot-safe-agents"; 16 + tag = "v${version}"; 17 + hash = "sha256-XO7iCZ7Dik7CmeFPwmMZf5K4COT5mRhDZMTsQxfR45c="; 18 + }; 19 + 20 + build-system = [ setuptools ]; 21 + 22 + pythonImportsCheck = [ "bot_safe_agents" ]; 23 + 24 + meta = { 25 + description = "Library for fetching a list of bot-safe user agents"; 26 + homepage = "https://github.com/ivan-sincek/bot-safe-agents"; 27 + changelog = "https://github.com/ivan-sincek/bot-safe-agents/releases/tag/v${version}"; 28 + license = lib.licenses.mit; 29 + maintainers = with lib.maintainers; [ emaryn ]; 30 + }; 31 + }
+2
pkgs/top-level/python-packages.nix
··· 2011 2012 bottombar = callPackage ../development/python-modules/bottombar { }; 2013 2014 bpemb = callPackage ../development/python-modules/bpemb { }; 2015 2016 bpylist2 = callPackage ../development/python-modules/bpylist2 { };
··· 2011 2012 bottombar = callPackage ../development/python-modules/bottombar { }; 2013 2014 + bot-safe-agents = callPackage ../development/python-modules/bot-safe-agents { }; 2015 + 2016 bpemb = callPackage ../development/python-modules/bpemb { }; 2017 2018 bpylist2 = callPackage ../development/python-modules/bpylist2 { };