python312Packages.django-postgres-partition: 0.1.1 -> 0.1.4 (#420073)

This commit is contained in:
Felix Bargfeldt 2025-06-28 15:10:51 +02:00 committed by GitHub
commit 4cf42cedea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,29 +1,29 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitLab,
setuptools,
django,
psycopg,
python-dateutil,
nix-update-script,
}:
buildPythonPackage rec {
pname = "django-postgres-partition";
version = "0.1.1";
version = "0.1.4";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "django_postgres_partition";
hash = "sha256-KUrgnfUXWyRerW4dqtVZO9bu5jHYnHcVOIg97w695RU=";
src = fetchFromGitLab {
owner = "burke-software";
repo = "django-postgres-partition";
tag = version;
hash = "sha256-Wk+m75gO9iClN9/vXGBl27VcmqyE6c1xpQX+X1qcKuU=";
};
build-system = [ setuptools ];
pythonRelaxDeps = [
"django"
];
pythonRelaxDeps = [ "django" ];
dependencies = [
django
@ -31,13 +31,17 @@ buildPythonPackage rec {
python-dateutil
];
doCheck = false; # pypi version doesn't ship with tests
# tests don't work yet, see https://gitlab.com/burke-software/django-postgres-partition/-/issues/4
doCheck = false;
pythonImportsCheck = [ "psql_partition" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Partition support for django, based on django-postgres-extra";
homepage = "https://gitlab.com/burke-software/django-postgres-partition";
changelog = "https://gitlab.com/burke-software/django-postgres-partition/-/releases/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ defelo ];
};