django-formtools: init at 2.2

This commit is contained in:
Greizgh
2021-10-23 11:34:28 +02:00
parent 48934ca5c1
commit 87eaa6260e
2 changed files with 25 additions and 0 deletions
@@ -0,0 +1,23 @@
{ stdenv, lib, buildPythonPackage, fetchPypi, django, python }:
buildPythonPackage rec {
pname = "django-formtools";
version = "2.2";
src = fetchPypi {
inherit pname version;
sha256 = "1chkbl188yj6hvhh1wgjpfgql553k6hrfwxzb8vv4lfdq41jq9y5";
};
propagatedBuildInputs = [ django ];
checkPhase = ''
${python.interpreter} -m django test --settings=tests.settings
'';
meta = with lib; {
description = "A set of high-level abstractions for Django forms";
homepage = "https://github.com/jazzband/django-formtools";
license = licenses.bsd3;
maintainers = with maintainers; [ greizgh schmittlauch ];
};
}