diff options
author | stuebinm | 2024-11-24 23:44:30 +0100 |
---|---|---|
committer | stuebinm | 2024-11-24 23:44:30 +0100 |
commit | 06c6dae0756f1023bbb225c1d70dc5e92dc31808 (patch) | |
tree | 2a82766a85073226787a36e5332b8c006080bcdf /pkgs/python/django-pgtrigger.nix | |
parent | 65cdc955efa657ec2923c6338a89b8bf6b334e7c (diff) |
pkgs/bookwyrm: 0.7.2 → 0.7.4
passes the basic smoke test, nothing else done (doing this to distract
myself & since people expressed interest in maybe trying to run an
instance again).
Diffstat (limited to 'pkgs/python/django-pgtrigger.nix')
-rw-r--r-- | pkgs/python/django-pgtrigger.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/python/django-pgtrigger.nix b/pkgs/python/django-pgtrigger.nix new file mode 100644 index 0000000..be266b4 --- /dev/null +++ b/pkgs/python/django-pgtrigger.nix @@ -0,0 +1,25 @@ +{ lib +, buildPythonPackage +, fetchPypi +, django +, python +, poetry-core +, s3-tar +}: + +buildPythonPackage rec { + pname = "django_pgtrigger"; + version = "4.13.2"; + pyproject = true; + + src = fetchPypi { + inherit pname version; + hash = "sha256-9NkG3zpt3hq8QriLNRvZQsGA/ijftmT/TnZuvivY/YE="; + }; + + nativeCheckInputs = [ + django + poetry-core + s3-tar + ]; +} |