nixos/doh-server: init
[NixPkgs.git] / pkgs / development / python-modules / django-formset-js-improved / default.nix
blobda8c2704b171520e143cdc542c2f82b9416043e5
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   django,
6   django-jquery-js,
7 }:
9 buildPythonPackage rec {
10   pname = "django-formset-js-improved";
11   version = "0.5.0.3";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "pretix";
16     repo = "django-formset-js";
17     tag = version;
18     hash = "sha256-bOM24ldXk9WeV0jl6LIJB3BJ5hVWLA1PJTBBnJBoprU=";
19   };
21   buildInputs = [ django ];
23   propagatedBuildInputs = [ django-jquery-js ];
25   pythonImportsCheck = [ "djangoformsetjs" ];
27   doCheck = false; # no tests
29   meta = with lib; {
30     description = "Wrapper for a JavaScript formset helper";
31     homepage = "https://github.com/pretix/django-formset-js";
32     license = licenses.bsd2;
33     maintainers = with maintainers; [ hexa ];
34   };