lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.django-currentuser: 0.6.1 -> 0.8.0

Diff: https://github.com/zsoldosp/django-currentuser/compare/refs/tags/v0.6.1...v0.8.0

Changelog: https://github.com/zsoldosp/django-currentuser/#release-notes

+17 -14
+17 -14
pkgs/development/python-modules/django-currentuser/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - fetchFromGitHub, 5 - python, 6 - pythonOlder, 7 4 django, 5 + fetchFromGitHub, 8 6 hatchling, 9 7 pyhamcrest, 8 + python, 9 + pythonOlder, 10 + setuptools, 11 + setuptools-scm, 10 12 }: 11 - let 12 - version = "0.6.1"; 13 - in 14 - buildPythonPackage { 13 + 14 + buildPythonPackage rec { 15 15 pname = "django-currentuser"; 16 - inherit version; 16 + version = "0.8.0"; 17 17 pyproject = true; 18 18 19 + disabled = pythonOlder "3.8"; 20 + 19 21 src = fetchFromGitHub { 20 22 owner = "zsoldosp"; 21 23 repo = "django-currentuser"; 22 - rev = "v${version}"; 23 - hash = "sha256-sxt4ZMkaFANINd1faIA5pqP8UoDMXElM3unsxcJU/ag="; 24 + tag = "v${version}"; 25 + hash = "sha256-buWYVl/nGxzoaDgA6Ds2R/AhGTYpi9JxxO0ER8Vuly4="; 24 26 }; 25 27 26 - disabled = pythonOlder "3.8"; 28 + build-system = [ 29 + setuptools 30 + setuptools-scm 31 + ]; 27 32 28 - nativeBuildInputs = [ hatchling ]; 29 - 30 - propagatedBuildInputs = [ django ]; 33 + dependencies = [ django ]; 31 34 32 35 nativeCheckInputs = [ pyhamcrest ]; 33 36