4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, django-discover-runner
|
|
, mock
|
|
, dj-database-url
|
|
, dj-email-url
|
|
, dj-search-url
|
|
, django-cache-url
|
|
, six
|
|
, django
|
|
, setuptools_scm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "2.2";
|
|
pname = "django-configurations";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9e3bcea1355ac50a4c9f854f751d214cb17e5f8adf18405a4488d0a1e8945915";
|
|
};
|
|
|
|
buildInputs = [ setuptools_scm ];
|
|
propagatedBuildInputs = [ six ];
|
|
checkInputs = [ django-discover-runner mock dj-database-url dj-email-url dj-search-url django-cache-url ];
|
|
|
|
checkPhase = ''
|
|
export PYTHONPATH=.:$PYTHONPATH
|
|
export DJANGO_SETTINGS_MODULE="tests.settings.main"
|
|
export DJANGO_CONFIGURATION="Test"
|
|
${django}/bin/django-admin.py test
|
|
'';
|
|
|
|
# django.core.exceptions.ImproperlyConfigured: django-configurations settings importer wasn't correctly installed
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://django-configurations.readthedocs.io/";
|
|
description = "A helper for organizing Django settings";
|
|
license = licenses.bsd0;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
}
|