mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:28:51 +00:00
3ef1fefd0a
The latest release is not compatible with Django 3.2 and tests are failing.
41 lines
852 B
Nix
41 lines
852 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, django
|
|
, python
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-js-asset";
|
|
version = "unstable-2021-06-07";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matthiask";
|
|
repo = pname;
|
|
rev = "a186aa0b5721ca95da6cc032a2fb780a152f581b";
|
|
sha256 = "141zxng0wwxalsi905cs8pdppy3ad717y3g4fkdxw4n3pd0fjp8r";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
django
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"js_asset"
|
|
];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
${python.interpreter} tests/manage.py test testapp
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Script tag with additional attributes for django.forms.Media";
|
|
homepage = "https://github.com/matthiask/django-js-asset";
|
|
maintainers = with maintainers; [ hexa ];
|
|
license = with licenses; [ bsd3 ];
|
|
};
|
|
}
|