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