File tree Expand file tree Collapse file tree 1 file changed +18
-20
lines changed
pkgs/development/python-modules/pyinfra Expand file tree Collapse file tree 1 file changed +18
-20
lines changed Original file line number Diff line number Diff line change 22 lib ,
33 buildPythonPackage ,
44 click ,
5- colorama ,
6- configparser ,
75 distro ,
86 fetchFromGitHub ,
97 gevent ,
8+ importlib-metadata ,
109 jinja2 ,
1110 packaging ,
1211 paramiko ,
1312 pytestCheckHook ,
1413 python-dateutil ,
1514 pythonOlder ,
1615 pywinrm ,
17- pyyaml ,
1816 setuptools ,
1917 typeguard ,
2018 typing-extensions ,
2119} :
2220
2321buildPythonPackage rec {
2422 pname = "pyinfra" ;
25- version = "3.1.1 " ;
23+ version = "3.2 " ;
2624 pyproject = true ;
2725
2826 disabled = pythonOlder "3.10" ;
@@ -31,26 +29,26 @@ buildPythonPackage rec {
3129 owner = "Fizzadar" ;
3230 repo = "pyinfra" ;
3331 tag = "v${ version } " ;
34- hash = "sha256-NHQpYOXlqFU4BtiwiESGV8pM0O8kqCz2TpXOGz8T4zQ =" ;
32+ hash = "sha256-l0RD4lOLjzM9Ydf7vJr+PXpUGsVdAZN/dTUFJ3fo078 =" ;
3533 } ;
3634
3735 build-system = [ setuptools ] ;
3836
39- dependencies = [
40- click
41- colorama
42- configparser
43- distro
44- gevent
45- jinja2
46- packaging
47- paramiko
48- python-dateutil
49- pywinrm
50- pyyaml
51- setuptools
52- typeguard
53- ] ++ lib . optionals ( pythonOlder "3.10" ) [ typing-extensions ] ;
37+ dependencies =
38+ [
39+ click
40+ distro
41+ gevent
42+ jinja2
43+ packaging
44+ paramiko
45+ python-dateutil
46+ pywinrm
47+ setuptools
48+ typeguard
49+ ]
50+ ++ lib . optionals ( pythonOlder "3.11" ) [ typing-extensions ]
51+ ++ lib . optionals ( pythonOlder "3.10" ) [ importlib-metadata ] ;
5452
5553 nativeCheckInputs = [ pytestCheckHook ] ;
5654
You can’t perform that action at this time.
0 commit comments