Skip to content

Commit 371c955

Browse files
authored
Merge pull request #217384 from fabaff/asyncwhois-bump
python310Packages.asyncwhois: 1.0.1 -> 1.0.2
2 parents c945931 + 4b36675 commit 371c955

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

pkgs/development/python-modules/asyncwhois/default.nix

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ lib
2-
, asynctest
32
, buildPythonPackage
43
, fetchFromGitHub
4+
, pytest-mock
55
, pytestCheckHook
66
, python-socks
77
, pythonOlder
@@ -11,16 +11,16 @@
1111

1212
buildPythonPackage rec {
1313
pname = "asyncwhois";
14-
version = "1.0.1";
14+
version = "1.0.2";
1515
format = "setuptools";
1616

1717
disabled = pythonOlder "3.7";
1818

1919
src = fetchFromGitHub {
2020
owner = "pogzyb";
2121
repo = pname;
22-
rev = "v${version}";
23-
hash = "sha256-TpUiUW9ntrpuT/rUhucedl+DM5X88Mislrd+3D5/TUE=";
22+
rev = "refs/tags/v${version}";
23+
hash = "sha256-MYK09kszv7CTvZjdA9YQFfhlJ/A5d/aebLRaiMlnuB0=";
2424
};
2525

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

3232
nativeCheckInputs = [
33-
asynctest
33+
pytest-mock
3434
pytestCheckHook
3535
];
3636

@@ -61,6 +61,7 @@ buildPythonPackage rec {
6161
meta = with lib; {
6262
description = "Python module for retrieving WHOIS information";
6363
homepage = "https://github.com/pogzyb/asyncwhois";
64+
changelog = "https://github.com/pogzyb/asyncwhois/releases/tag/v${version}";
6465
license = with licenses; [ asl20 ];
6566
maintainers = with maintainers; [ fab ];
6667
};

pkgs/development/python-modules/whodap/default.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{ lib
2-
, asynctest
32
, buildPythonPackage
43
, fetchFromGitHub
4+
, pytest-asyncio
55
, pytestCheckHook
66
, pythonOlder
77
, httpx
88
}:
99

1010
buildPythonPackage rec {
1111
pname = "whodap";
12-
version = "0.1.7";
12+
version = "0.1.8";
1313
format = "setuptools";
1414

1515
disabled = pythonOlder "3.8";
@@ -18,15 +18,15 @@ buildPythonPackage rec {
1818
owner = "pogzyb";
1919
repo = pname;
2020
rev = "refs/tags/v${version}";
21-
hash = "sha256-Aji8OqdcVOHB4TOv4W6x1qIGaJvoDmLGpr/PFz5mZ4w=";
21+
hash = "sha256-hAU9143R/LDqDBgX3Y+gBG+dt4dpIIPDdO6HgH0ZTfg=";
2222
};
2323

2424
propagatedBuildInputs = [
2525
httpx
2626
];
2727

2828
nativeCheckInputs = [
29-
asynctest
29+
pytest-asyncio
3030
pytestCheckHook
3131
];
3232

0 commit comments

Comments
 (0)