mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
48 lines
1 KiB
Nix
48 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
django,
|
|
dj-database-url,
|
|
pytest-django,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-polymorphic";
|
|
version = "4.0.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "django-polymorphic";
|
|
repo = "django-polymorphic";
|
|
tag = "v${version}";
|
|
hash = "sha256-cEV9gnc9gLpAVmYkzSaQwDbgXsklMTq71edndDJeP9E=";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/jazzband/django-polymorphic/issues/616
|
|
./django-5.1-compat.patch
|
|
];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ django ];
|
|
|
|
nativeCheckInputs = [
|
|
dj-database-url
|
|
pytest-django
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "polymorphic" ];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/jazzband/django-polymorphic/releases/tag/${src.tag}";
|
|
homepage = "https://github.com/django-polymorphic/django-polymorphic";
|
|
description = "Improved Django model inheritance with automatic downcasting";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|