File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed
pkgs/development/python-modules Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 1
1
{ lib
2
- , asynctest
3
2
, buildPythonPackage
4
3
, fetchFromGitHub
4
+ , pytest-mock
5
5
, pytestCheckHook
6
6
, python-socks
7
7
, pythonOlder
11
11
12
12
buildPythonPackage rec {
13
13
pname = "asyncwhois" ;
14
- version = "1.0.1 " ;
14
+ version = "1.0.2 " ;
15
15
format = "setuptools" ;
16
16
17
17
disabled = pythonOlder "3.7" ;
18
18
19
19
src = fetchFromGitHub {
20
20
owner = "pogzyb" ;
21
21
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 =" ;
24
24
} ;
25
25
26
26
propagatedBuildInputs = [
@@ -30,7 +30,7 @@ buildPythonPackage rec {
30
30
] ;
31
31
32
32
nativeCheckInputs = [
33
- asynctest
33
+ pytest-mock
34
34
pytestCheckHook
35
35
] ;
36
36
@@ -61,6 +61,7 @@ buildPythonPackage rec {
61
61
meta = with lib ; {
62
62
description = "Python module for retrieving WHOIS information" ;
63
63
homepage = "https://github.com/pogzyb/asyncwhois" ;
64
+ changelog = "https://github.com/pogzyb/asyncwhois/releases/tag/v${ version } " ;
64
65
license = with licenses ; [ asl20 ] ;
65
66
maintainers = with maintainers ; [ fab ] ;
66
67
} ;
Original file line number Diff line number Diff line change 1
1
{ lib
2
- , asynctest
3
2
, buildPythonPackage
4
3
, fetchFromGitHub
4
+ , pytest-asyncio
5
5
, pytestCheckHook
6
6
, pythonOlder
7
7
, httpx
8
8
} :
9
9
10
10
buildPythonPackage rec {
11
11
pname = "whodap" ;
12
- version = "0.1.7 " ;
12
+ version = "0.1.8 " ;
13
13
format = "setuptools" ;
14
14
15
15
disabled = pythonOlder "3.8" ;
@@ -18,15 +18,15 @@ buildPythonPackage rec {
18
18
owner = "pogzyb" ;
19
19
repo = pname ;
20
20
rev = "refs/tags/v${ version } " ;
21
- hash = "sha256-Aji8OqdcVOHB4TOv4W6x1qIGaJvoDmLGpr/PFz5mZ4w =" ;
21
+ hash = "sha256-hAU9143R/LDqDBgX3Y+gBG+dt4dpIIPDdO6HgH0ZTfg =" ;
22
22
} ;
23
23
24
24
propagatedBuildInputs = [
25
25
httpx
26
26
] ;
27
27
28
28
nativeCheckInputs = [
29
- asynctest
29
+ pytest-asyncio
30
30
pytestCheckHook
31
31
] ;
32
32
You can’t perform that action at this time.
0 commit comments