02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
40 lines
936 B
Nix
40 lines
936 B
Nix
{ buildPythonPackage
|
|
, django
|
|
, django-modelcluster
|
|
, fetchFromGitHub
|
|
, lib
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "permissionedforms";
|
|
version = "0.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "django-permissionedforms";
|
|
owner = "wagtail";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-DQzPGmh5UEVpGWnW3IrEVPkZZ8mdiW9J851Ej4agTDc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
django
|
|
];
|
|
|
|
checkInputs = [ django-modelcluster ];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} runtests.py
|
|
'';
|
|
|
|
pythonImportsCheck = [ "permissionedforms" ];
|
|
|
|
meta = with lib; {
|
|
description = "A Django extension for creating forms that vary according to user permissions";
|
|
homepage = "https://github.com/wagtail/permissionedforms";
|
|
changelog = "https://github.com/wagtail/permissionedforms/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ sephi ];
|
|
};
|
|
}
|