Skip to content

Commit

Permalink
Merge pull request NixOS#334125 from Flakebi/captcha
Browse files Browse the repository at this point in the history
python312Packages.captcha: 0.5.0 -> 0.6.0
  • Loading branch information
pbsds authored Aug 17, 2024
2 parents 8a47aef + ab75684 commit be8f043
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions pkgs/development/python-modules/captcha/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,26 @@
buildPythonPackage,
pillow,
pytestCheckHook,
setuptools,
}:

buildPythonPackage rec {
pname = "captcha";
version = "0.5.0";
version = "0.6.0";
pyproject = true;

disabled = pythonOlder "3.8";

format = "setuptools";

src = fetchFromGitHub {
owner = "lepture";
repo = pname;
rev = "v${version}";
hash = "sha256-TPPuf0BRZPSHPSF0HuGxhjhoSyZQ7r86kSjkrztgZ5w=";
repo = "captcha";
rev = "refs/tags/v${version}";
hash = "sha256-5d5gts+BXS5OKVziR9cLczsD2QMXZ/n31sPEq+gPlxk=";
};

propagatedBuildInputs = [ pillow ];
dependencies = [ pillow ];

nativeBuildInputs = [ setuptools ];

pythonImportsCheck = [ "captcha" ];

Expand Down

0 comments on commit be8f043

Please sign in to comment.