Tomáš Čech <address@hidden> writes:
* gnu/packages/python.scm (python-onetimepass): New variable.
[...]
+(define-public python-onetimepass
+ (package
+ (name "python-onetimepass")
Please check the indentation of this package. Use
'./etc/indent-code.el' if you're not an emacs user.
+ (version "1.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "onetimepass" version))
+ (sha256
+ (base32
+ "09vagxgbq78wvq4xbikmn2hpqqsa2i96kqsmphf7dqynfv0dlsd5"))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-six" ,python-six)))
Should this not be a propagated input?