mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-15 22:19:17 +03:00
33 lines
687 B
Nix
33 lines
687 B
Nix
![]() |
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromBitbucket,
|
||
|
django,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "django-jquery-js";
|
||
|
version = "3.1.1";
|
||
|
format = "setuptools";
|
||
|
|
||
|
src = fetchFromBitbucket {
|
||
|
owner = "tim_heap";
|
||
|
repo = "django-jquery";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-TzMo31jFhcvlrmq2TJgQyds9n8eATaChnyhnQ7bwdzs=";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ django ];
|
||
|
|
||
|
pythonImportsCheck = [ "jquery" ];
|
||
|
|
||
|
doCheck = false; # no tests
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "jQuery, bundled up so apps can depend upon it";
|
||
|
homepage = "https://bitbucket.org/tim_heap/django-jquery";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ hexa ];
|
||
|
};
|
||
|
}
|