cidr2glob: python -> python3
This commit is contained in:
parent
1328a34e51
commit
ecf4c704f1
@ -1,6 +1,7 @@
|
||||
{ python, writeScriptBin, ... }:
|
||||
{ python3, writeScriptBin, ... }:
|
||||
|
||||
let
|
||||
python = python3;
|
||||
pythonEnv = python.withPackages (ps: [ ps.netaddr ]);
|
||||
in
|
||||
writeScriptBin "cidr2glob" ''
|
||||
@ -25,6 +26,6 @@ in
|
||||
if __name__ == "__main__":
|
||||
for cidr in sys.stdin:
|
||||
for glob in cidr2glob(cidr):
|
||||
print glob
|
||||
print(glob)
|
||||
|
||||
''
|
||||
|
Loading…
Reference in New Issue
Block a user