feat(django-impersonate): init 0.9.3
This commit is contained in:
parent
60eebdcc9b
commit
29a3cbc3b3
1 changed files with 37 additions and 0 deletions
37
pkgs/django-impersonate.nix
Normal file
37
pkgs/django-impersonate.nix
Normal 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; [ ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue