gerd.wger: init
This commit is contained in:
parent
80ef4fabc8
commit
2f2993ac16
16 changed files with 733 additions and 0 deletions
46
machines/gerd/services/wger/wgerpkg/django-recaptcha.nix
Normal file
46
machines/gerd/services/wger/wgerpkg/django-recaptcha.nix
Normal file
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
wheel,
|
||||
django,
|
||||
coveralls,
|
||||
tox,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "django-recaptcha";
|
||||
version = "4.0.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "django-recaptcha";
|
||||
repo = "django-recaptcha";
|
||||
rev = version;
|
||||
hash = "sha256-B6Z9oKcMjSh+zE28k0ipoBppm9dD+Moa+PAZqXVabpA=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
django
|
||||
coveralls
|
||||
tox
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
# "django_recaptcha"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Django reCAPTCHA form field/widget integration app";
|
||||
homepage = "https://github.com/django-recaptcha/django-recaptcha";
|
||||
changelog = "https://github.com/django-recaptcha/django-recaptcha/blob/${src.rev}/CHANGELOG.md";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue