gnu: protonvpn-cli: Prefix Python input names with ‘python-’.

* gnu/packages/vpn.scm (protonvpn-cli)[native-inputs, inputs]: Add
‘’python-’ to input labels.
This commit is contained in:
Tobias Geerinckx-Rice 2020-10-03 16:20:56 +02:00
parent 13d60d9262
commit f39b7612ab
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -338,10 +338,10 @@ (define-public protonvpn-cli
(build-system python-build-system)
(arguments '(#:tests? #f)) ; no tests in repo
(native-inputs
`(("docopt" ,python-docopt)))
`(("python-docopt" ,python-docopt)))
(inputs
`(("pythondialog" ,python-pythondialog)
("requests" ,python-requests)))
`(("python-pythondialog" ,python-pythondialog)
("python-requests" ,python-requests)))
(propagated-inputs
`(("openvpn" ,openvpn)
("dialog" ,dialog)))