Merge pull request #301165 from fabaff/publicsuffixlist-bump

python312Packages.publicsuffixlist: 0.10.0.20240328 -> 0.10.0.20240403
This commit is contained in:
Fabian Affolter
2024-04-04 00:18:45 +02:00
committed by GitHub
@@ -1,49 +1,38 @@
{ lib
, buildPythonPackage
, fetchPypi
, pandoc
, pytestCheckHook
, pythonOlder
, requests
, setuptools
{
lib,
buildPythonPackage,
fetchPypi,
pandoc,
pytestCheckHook,
pythonOlder,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "publicsuffixlist";
version = "0.10.0.20240328";
version = "0.10.0.20240403";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-XArawQzC9J5ShtgCG02qf8RRxNTKJMn8aiclG+4CUKY=";
hash = "sha256-DQgjgr35l5I33BWLaOQTUnQpFhBMXUB0Jx4jQXbeBZU=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
passthru.optional-dependencies = {
update = [
requests
];
readme = [
pandoc
];
update = [ requests ];
readme = [ pandoc ];
};
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"publicsuffixlist"
];
pythonImportsCheck = [ "publicsuffixlist" ];
pytestFlagsArray = [
"publicsuffixlist/test.py"
];
pytestFlagsArray = [ "publicsuffixlist/test.py" ];
meta = with lib; {
description = "Public Suffix List parser implementation";