python312Packages.publicsuffix: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-12 17:35:45 +02:00
parent 0d76f09f15
commit e147a1472b
1 changed files with 8 additions and 11 deletions

View File

@ -1,8 +1,9 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, pythonOlder
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pythonOlder,
}:
buildPythonPackage rec {
@ -23,13 +24,9 @@ buildPythonPackage rec {
\\t@unittest.skip('requires internet')" -e "/def additional_tests():/,+1d" tests.py
'';
build-system = [
setuptools
];
build-system = [ setuptools ];
pythonImportsCheck = [
"publicsuffix"
];
pythonImportsCheck = [ "publicsuffix" ];
meta = with lib; {
description = "Allows to get the public suffix of a domain name";