Merge pull request #322122 from r-ryantm/auto-update/python311Packages.publicsuffixlist

python311Packages.publicsuffixlist: 0.10.1.20240618 -> 1.0.1.20240629
This commit is contained in:
Martin Weinelt
2024-07-06 15:06:56 +02:00
committed by GitHub
3 changed files with 10 additions and 6 deletions
+3 -2
View File
@@ -1,7 +1,7 @@
{ lib
, buildNpmPackage
, gettext
, python3
, python311
, fetchFromGitHub
, fetchpatch2
, plugins ? [ ]
@@ -9,7 +9,7 @@
}:
let
python = python3.override {
python = python311.override {
packageOverrides = final: prev: {
django-bootstrap4 = prev.django-bootstrap4.overridePythonAttrs (oldAttrs: rec {
version = "3.0.0";
@@ -105,6 +105,7 @@ python.pkgs.buildPythonApplication rec {
"djangorestframework"
"markdown"
"pillow"
"publicsuffixlist"
"python-dateutil"
"reportlab"
"requests"
@@ -1,10 +1,10 @@
{
lib,
buildPythonPackage,
pythonAtLeast,
pythonOlder,
fetchFromGitHub,
setuptools-scm,
more-itertools,
cssselect,
jaraco-test,
lxml,
@@ -29,6 +29,8 @@ buildPythonPackage rec {
build-system = [ setuptools-scm ];
dependencies = [ more-itertools ];
nativeCheckInputs = [
cssselect
jaraco-test
@@ -11,19 +11,19 @@
buildPythonPackage rec {
pname = "publicsuffixlist";
version = "0.10.1.20240618";
version = "1.0.1.20240629";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-+wJoH/vCwNPmQlQfikDmnqbNQlMLA315N+U4Yvy/mMw=";
hash = "sha256-WXyE+4SHMDoaG+g+GrDcfgYlQTdOv8IQkrmaxBWNjek=";
};
build-system = [ setuptools ];
passthru.optional-dependencies = {
optional-dependencies = {
update = [ requests ];
readme = [ pandoc ];
};
@@ -35,6 +35,7 @@ buildPythonPackage rec {
pytestFlagsArray = [ "publicsuffixlist/test.py" ];
meta = with lib; {
changelog = "https://github.com/ko-zu/psl/blob/v${version}-gha/CHANGES.md";
description = "Public Suffix List parser implementation";
homepage = "https://github.com/ko-zu/psl";
license = licenses.mpl20;