python312Packages.django-currentuser: 0.6.1 -> 0.8.0 (#373987)

This commit is contained in:
Fabian Affolter
2025-01-15 11:40:07 +01:00
committed by GitHub
@@ -1,33 +1,36 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
python,
pythonOlder,
django,
fetchFromGitHub,
hatchling,
pyhamcrest,
python,
pythonOlder,
setuptools,
setuptools-scm,
}:
let
version = "0.6.1";
in
buildPythonPackage {
buildPythonPackage rec {
pname = "django-currentuser";
inherit version;
version = "0.8.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "zsoldosp";
repo = "django-currentuser";
rev = "v${version}";
hash = "sha256-sxt4ZMkaFANINd1faIA5pqP8UoDMXElM3unsxcJU/ag=";
tag = "v${version}";
hash = "sha256-buWYVl/nGxzoaDgA6Ds2R/AhGTYpi9JxxO0ER8Vuly4=";
};
disabled = pythonOlder "3.8";
build-system = [
setuptools
setuptools-scm
];
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [ django ];
dependencies = [ django ];
nativeCheckInputs = [ pyhamcrest ];