Unverified Commit 371c955d authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #217384 from fabaff/asyncwhois-bump

python310Packages.asyncwhois: 1.0.1 -> 1.0.2 
parents c945931f 4b366751
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
{ lib
, asynctest
, buildPythonPackage
, fetchFromGitHub
, pytest-mock
, pytestCheckHook
, python-socks
, pythonOlder
@@ -11,7 +11,7 @@

buildPythonPackage rec {
  pname = "asyncwhois";
  version = "1.0.1";
  version = "1.0.2";
  format = "setuptools";

  disabled = pythonOlder "3.7";
@@ -19,8 +19,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "pogzyb";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-TpUiUW9ntrpuT/rUhucedl+DM5X88Mislrd+3D5/TUE=";
    rev = "refs/tags/v${version}";
    hash = "sha256-MYK09kszv7CTvZjdA9YQFfhlJ/A5d/aebLRaiMlnuB0=";
  };

  propagatedBuildInputs = [
@@ -30,7 +30,7 @@ buildPythonPackage rec {
  ];

  nativeCheckInputs = [
    asynctest
    pytest-mock
    pytestCheckHook
  ];

@@ -61,6 +61,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python module for retrieving WHOIS information";
    homepage = "https://github.com/pogzyb/asyncwhois";
    changelog = "https://github.com/pogzyb/asyncwhois/releases/tag/v${version}";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ fab ];
  };
+4 −4
Original line number Diff line number Diff line
{ lib
, asynctest
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, httpx
@@ -9,7 +9,7 @@

buildPythonPackage rec {
  pname = "whodap";
  version = "0.1.7";
  version = "0.1.8";
  format = "setuptools";

  disabled = pythonOlder "3.8";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
    owner = "pogzyb";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-Aji8OqdcVOHB4TOv4W6x1qIGaJvoDmLGpr/PFz5mZ4w=";
    hash = "sha256-hAU9143R/LDqDBgX3Y+gBG+dt4dpIIPDdO6HgH0ZTfg=";
  };

  propagatedBuildInputs = [
@@ -26,7 +26,7 @@ buildPythonPackage rec {
  ];

  nativeCheckInputs = [
    asynctest
    pytest-asyncio
    pytestCheckHook
  ];