Skip to content

Commit

Permalink
Merge pull request #217384 from fabaff/asyncwhois-bump
Browse files Browse the repository at this point in the history
python310Packages.asyncwhois: 1.0.1 -> 1.0.2
  • Loading branch information
fabaff authored Feb 21, 2023
2 parents c945931 + 4b36675 commit 371c955
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
11 changes: 6 additions & 5 deletions pkgs/development/python-modules/asyncwhois/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ lib
, asynctest
, buildPythonPackage
, fetchFromGitHub
, pytest-mock
, pytestCheckHook
, python-socks
, pythonOlder
Expand All @@ -11,16 +11,16 @@

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

disabled = pythonOlder "3.7";

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 = [
Expand All @@ -30,7 +30,7 @@ buildPythonPackage rec {
];

nativeCheckInputs = [
asynctest
pytest-mock
pytestCheckHook
];

Expand Down Expand Up @@ -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 ];
};
Expand Down
8 changes: 4 additions & 4 deletions pkgs/development/python-modules/whodap/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ lib
, asynctest
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, httpx
}:

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

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

propagatedBuildInputs = [
httpx
];

nativeCheckInputs = [
asynctest
pytest-asyncio
pytestCheckHook
];

Expand Down

0 comments on commit 371c955

Please sign in to comment.