Loading pkgs/development/python-modules/django-postgres-partition/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, setuptools, django_5_2, psycopg, python-dateutil, }: buildPythonPackage rec { pname = "django-postgres-partition"; version = "0.1.1"; pyproject = true; src = fetchPypi { inherit version; pname = "django_postgres_partition"; hash = "sha256-KUrgnfUXWyRerW4dqtVZO9bu5jHYnHcVOIg97w695RU="; }; build-system = [ setuptools ]; dependencies = [ django_5_2 psycopg python-dateutil ]; doCheck = false; # pypi version doesn't ship with tests pythonImportsCheck = [ "psql_partition" ]; meta = { description = "Partition support for django, based on django-postgres-extra"; homepage = "https://gitlab.com/burke-software/django-postgres-partition"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ defelo ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3863,6 +3863,8 @@ self: super: with self; { django-polymorphic = callPackage ../development/python-modules/django-polymorphic { }; django-postgres-partition = callPackage ../development/python-modules/django-postgres-partition { }; django-postgresql-netfields = callPackage ../development/python-modules/django-postgresql-netfields { }; Loading Loading
pkgs/development/python-modules/django-postgres-partition/default.nix 0 → 100644 +40 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchPypi, setuptools, django_5_2, psycopg, python-dateutil, }: buildPythonPackage rec { pname = "django-postgres-partition"; version = "0.1.1"; pyproject = true; src = fetchPypi { inherit version; pname = "django_postgres_partition"; hash = "sha256-KUrgnfUXWyRerW4dqtVZO9bu5jHYnHcVOIg97w695RU="; }; build-system = [ setuptools ]; dependencies = [ django_5_2 psycopg python-dateutil ]; doCheck = false; # pypi version doesn't ship with tests pythonImportsCheck = [ "psql_partition" ]; meta = { description = "Partition support for django, based on django-postgres-extra"; homepage = "https://gitlab.com/burke-software/django-postgres-partition"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ defelo ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -3863,6 +3863,8 @@ self: super: with self; { django-polymorphic = callPackage ../development/python-modules/django-polymorphic { }; django-postgres-partition = callPackage ../development/python-modules/django-postgres-partition { }; django-postgresql-netfields = callPackage ../development/python-modules/django-postgresql-netfields { }; Loading