mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
I have effectively renounced on maintaining all these packages and I do
not plan to return them except if I'm forced to.
I am also fine with most of these packages being dropped for next
releases if no maintainer shows up.
Change-Id: I8d167c8029b6991181bd7a094af21c3313af2b51
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
(cherry picked from commit 6a63a4ad8b)
40 lines
822 B
Nix
40 lines
822 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
django,
|
|
psycopg2,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-pgtrigger";
|
|
version = "4.17.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AmbitionEng";
|
|
repo = "django-pgtrigger";
|
|
tag = version;
|
|
hash = "sha256-LBuqaFFHP18LPI26CcYMVO7rJsDrCBtuVKhwoTr6ACA=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
django
|
|
psycopg2
|
|
];
|
|
|
|
pythonImportsCheck = [ "pgtrigger" ];
|
|
|
|
meta = {
|
|
description = "Write Postgres triggers for your Django models";
|
|
homepage = "https://github.com/Opus10/django-pgtrigger";
|
|
changelog = "https://github.com/Opus10/django-pgtrigger/blob/${src.tag}/CHANGELOG.md";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [
|
|
pyrox0
|
|
];
|
|
};
|
|
}
|