1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
53 lines
1.1 KiB
Nix
53 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
django,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
pyhamcrest,
|
|
python,
|
|
setuptools,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-currentuser";
|
|
version = "0.9.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zsoldosp";
|
|
repo = "django-currentuser";
|
|
tag = "v${version}";
|
|
hash = "sha256-pfgsVsWM/aehZZAQzjL1fdsqWlfnquOniu76UoLPREI=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = [ django ];
|
|
|
|
nativeCheckInputs = [ pyhamcrest ];
|
|
|
|
preCheck = ''
|
|
DJANGO_SETTINGS_MODULE="settings"
|
|
PYTHONPATH="tests:$PYTHONPATH"
|
|
'';
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
${python.interpreter} manage.py test testapp
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = {
|
|
description = "Conveniently store reference to request user on thread/db level";
|
|
homepage = "https://github.com/zsoldosp/django-currentuser";
|
|
changelog = "https://github.com/zsoldosp/django-currentuser/#release-notes";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ augustebaum ];
|
|
};
|
|
}
|