Skip to content

Commit

Permalink
Merge pull request #302315 from mweinelt/django-countries-7.6
Browse files Browse the repository at this point in the history
python311Packages.django-countries: 7.5.1 -> 7.6.1
  • Loading branch information
mweinelt committed Apr 8, 2024
2 parents fdf0205 + 0f248ad commit ed6db4c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 2 additions & 0 deletions pkgs/by-name/pr/pretalx/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ python.pkgs.buildPythonApplication rec {
]);

pythonRelaxDeps = [
"cssutils"
"django-csp"
"django-filter"
"python-dateutil"
];

Expand Down
1 change: 1 addition & 0 deletions pkgs/by-name/pr/pretix/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
14 changes: 7 additions & 7 deletions pkgs/development/python-modules/django-countries/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
, buildPythonPackage
, fetchFromGitHub

# build
# build-system
, setuptools

# propagates
# dependencies
, asgiref
, typing-extensions

Expand All @@ -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
];
Expand Down

0 comments on commit ed6db4c

Please sign in to comment.