10 buildPythonPackage rec {
11 pname = "django-rosetta";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
19 repo = "django-rosetta";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-OuKgqGYBlzQNKKAJYFhNi+LnONB/mxINMj4VBAVWjqI=";
24 propagatedBuildInputs = [
30 # require internet connection
33 pythonImportsCheck = [
38 description = "Rosetta is a Django application that facilitates the translation process of your Django projects";
39 homepage = "https://github.com/mbi/django-rosetta";
40 changelog = "https://github.com/mbi/django-rosetta/releases/tag/v${version}";
41 license = licenses.mit;
42 maintainers = with maintainers; [ derdennisop ];