587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, django
|
|
, factory-boy
|
|
, mock
|
|
, pip
|
|
, pygments
|
|
, pytest-django
|
|
, pytestCheckHook
|
|
, shortuuid
|
|
, vobject
|
|
, werkzeug
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-extensions";
|
|
version = "3.2.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-A2+5FBv0IhTJPkwgd7je+B9Ac64UHJEa3HRBbWr2FxM=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace "--cov=django_extensions --cov-report html --cov-report term" ""
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
django
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = [
|
|
factory-boy
|
|
mock
|
|
pip
|
|
pygments # not explicitly declared in setup.py, but some tests require it
|
|
pytest-django
|
|
pytestCheckHook
|
|
shortuuid
|
|
vobject
|
|
werkzeug
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# requires network access
|
|
"tests/management/commands/test_pipchecker.py"
|
|
# django.db.utils.OperationalError: no such table: django_extensions_permmodel
|
|
"tests/test_dumpscript.py"
|
|
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A collection of custom extensions for the Django Framework";
|
|
homepage = "https://github.com/django-extensions/django-extensions";
|
|
license = licenses.mit;
|
|
};
|
|
}
|