Merge pull request #307274 from fabaff/python-whois-bump

python312Packages.python-whois: 0.9.3 -> 0.9.4
This commit is contained in:
Fabian Affolter 2024-04-27 22:36:39 +02:00 committed by GitHub
commit e80af6965d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,33 +1,31 @@
{ lib
, buildPythonPackage
, fetchPypi
, pynose
, pytestCheckHook
, python-dateutil
, pythonOlder
, setuptools
, simplejson
{
lib,
buildPythonPackage,
fetchPypi,
pynose,
pytestCheckHook,
python-dateutil,
pythonOlder,
setuptools,
simplejson,
}:
buildPythonPackage rec {
pname = "python-whois";
version = "0.9.3";
version = "0.9.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-jdoscMD4nw+PxIpCNweJMyv/9nm1+kYgSIhBUdJso84=";
pname = "python_whois";
inherit version;
hash = "sha256-d7xzR7+BXWXM0ZZxHCmDdlLwdYWu2tPDwE3YhWUf16c=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
python-dateutil
];
dependencies = [ python-dateutil ];
nativeCheckInputs = [
pynose
@ -45,9 +43,7 @@ buildPythonPackage rec {
"test_simple_unicode_domain"
];
pythonImportsCheck = [
"whois"
];
pythonImportsCheck = [ "whois" ];
meta = with lib; {
description = "Python module to produce parsed WHOIS data";