8 buildPythonPackage rec {
9 pname = "django-jquery-js";
11 format = "setuptools";
13 src = fetchFromBitbucket {
15 repo = "django-jquery";
16 rev = "refs/tags/v${version}";
17 hash = "sha256-TzMo31jFhcvlrmq2TJgQyds9n8eATaChnyhnQ7bwdzs=";
20 buildInputs = [ django ];
22 pythonImportsCheck = [ "jquery" ];
24 doCheck = false; # no tests
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 ];