feat(django-impersonate): init 0.9.3

This commit is contained in:
catvayor 2024-10-25 15:32:21 +02:00
parent 60eebdcc9b
commit 29a3cbc3b3
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

View file

@ -0,0 +1,37 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "django-impersonate";
version = "0.9.3";
pyproject = true;
src = fetchFromGitHub {
owner = "BetterWorks";
repo = "django-impersonate";
rev = version;
hash = "sha256-IELpNA5G67FepRKxNEOGRqzb1QwfrzAJzTCrYtQsM34=";
};
build-system = [
setuptools
wheel
];
pythonImportsCheck = [
"django_impersonate"
];
meta = {
description = "Fork of https://bitbucket.org/petersanchez/django-impersonate";
homepage = "https://github.com/BetterWorks/django-impersonate.git";
changelog = "https://github.com/BetterWorks/django-impersonate/blob/${src.rev}/CHANGELOG";
license = lib.licenses.unfree; # FIXME: nix-init did not find a license
maintainers = with lib.maintainers; [ ];
};
}