504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
50 lines
964 B
Nix
50 lines
964 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonAtLeast
|
|
, fetchpatch
|
|
, fetchFromGitHub
|
|
, python
|
|
, django
|
|
, packaging
|
|
, nodejs
|
|
, js2py
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-js-reverse";
|
|
version = "0.10.1-b1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BITSOLVER";
|
|
repo = "django-js-reverse";
|
|
rev = version;
|
|
hash = "sha256-i78UsxVwxyDAc8LrOVEXLG0tdidoQhvUx7GvPDaH0KY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
django
|
|
] ++ lib.optionals (pythonAtLeast "3.7") [
|
|
packaging
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
nodejs
|
|
js2py
|
|
six
|
|
];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} django_js_reverse/tests/unit_tests.py
|
|
'';
|
|
|
|
pythonImportsCheck = [ "django_js_reverse" ];
|
|
|
|
meta = with lib; {
|
|
description = "Javascript url handling for Django that doesn't hurt";
|
|
homepage = "https://django-js-reverse.readthedocs.io/en/latest/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ambroisie ];
|
|
};
|
|
}
|