nixpkgs/pkgs/development/python-modules/django-js-reverse/default.nix
2023-05-06 14:22:17 +01:00

50 lines
939 B
Nix

{ lib
, buildPythonPackage
, pythonAtLeast
, fetchpatch
, fetchFromGitHub
, python
, django
, packaging
, nodejs
, js2py
, six
}:
buildPythonPackage rec {
pname = "django-js-reverse";
version = "0.10.1-b1";
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 ];
};
}