Files
nixpkgs/pkgs/development/python-modules/django-reversion/default.nix
T
Martin Weinelt a9e6c5c107 python3Packages.django-reversion: 6.0.0 -> 6.1.0
https://github.com/etianen/django-reversion/blob/v6.1.0/CHANGELOG.rst

This commit was automatically generated using update-python-libraries.
2026-02-01 16:43:09 +01:00

37 lines
848 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
django,
setuptools,
}:
buildPythonPackage rec {
pname = "django-reversion";
version = "6.1.0";
pyproject = true;
src = fetchPypi {
pname = "django_reversion";
inherit version;
hash = "sha256-Md1/7gLiohr3wtCmHBwPJ7oH3yMXyaCj8x0+5ABpAl0=";
};
build-system = [ setuptools ];
dependencies = [ django ];
# Tests assume the availability of a mysql/postgresql database
doCheck = false;
pythonImportsCheck = [ "reversion" ];
meta = {
description = "Extension to the Django web framework that provides comprehensive version control facilities";
homepage = "https://github.com/etianen/django-reversion";
changelog = "https://github.com/etianen/django-reversion/blob/v${version}/CHANGELOG.rst";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}