Merge pull request #302315 from mweinelt/django-countries-7.6

python311Packages.django-countries: 7.5.1 -> 7.6.1
This commit is contained in:
Martin Weinelt 2024-04-08 21:28:16 +02:00 committed by GitHub
commit ed6db4c403
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 7 deletions

View File

@ -85,7 +85,9 @@ python.pkgs.buildPythonApplication rec {
]);
pythonRelaxDeps = [
"cssutils"
"django-csp"
"django-filter"
"python-dateutil"
];

View File

@ -82,6 +82,7 @@ python.pkgs.buildPythonApplication rec {
--replace-fail vat_moss_forked==2020.3.20.0.11.0 vat-moss \
--replace-fail "bleach==5.0.*" bleach \
--replace-fail "dnspython==2.6.*" dnspython \
--replace-fail "django-countries==7.5.*" django-countries \
--replace-fail "django-filter==24.1" django-filter \
--replace-fail "importlib_metadata==7.*" importlib_metadata \
--replace-fail "markdown==3.6" markdown \

View File

@ -2,10 +2,10 @@
, buildPythonPackage
, fetchFromGitHub
# build
# build-system
, setuptools
# propagates
# dependencies
, asgiref
, typing-extensions
@ -19,21 +19,21 @@
buildPythonPackage rec {
pname = "django-countries";
version = "7.5.1";
format = "pyproject";
version = "7.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "SmileyChris";
repo = "django-countries";
rev = "refs/tags/v${version}";
hash = "sha256-se6s0sgIfMLW0sIMp/3vK4KdDPQ5ahg6OQCDAs4my4M=";
hash = "sha256-IR9cJbDVkZrcF3Ti70mV8VeXINQDK8OpwUTWVjD4Zn0=";
};
nativeBuildInputs = [
build-system = [
setuptools
];
propagatedBuildInputs = [
dependencies = [
asgiref
typing-extensions
];