1{ lib
2, buildPythonPackage
3, fetchFromBitbucket
4, django
5}:
6
7buildPythonPackage rec {
8 pname = "django-jquery-js";
9 version = "3.1.1";
10 format = "setuptools";
11
12 src = fetchFromBitbucket {
13 owner = "tim_heap";
14 repo = "django-jquery";
15 rev = "refs/tags/v${version}";
16 hash = "sha256-TzMo31jFhcvlrmq2TJgQyds9n8eATaChnyhnQ7bwdzs=";
17 };
18
19 buildInputs = [
20 django
21 ];
22
23 pythonImportsCheck = [
24 "jquery"
25 ];
26
27 doCheck = false; # no tests
28
29 meta = with lib; {
30 description = "jQuery, bundled up so apps can depend upon it";
31 homepage = "https://bitbucket.org/tim_heap/django-jquery";
32 license = licenses.mit;
33 maintainers = with maintainers; [ hexa ];
34 };
35}