tree-wide: fix malformed meta.maintainers
These packages stood out while processing packages.json.gz, where the maintainer field of some packages wasn't a list of sets, but a nested list, or a string.
This commit is contained in:
@@ -13,10 +13,10 @@ buildPythonPackage rec {
|
||||
|
||||
propagatedBuildInputs = [ click colorama ];
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "Reference implementation of SLIP-0039";
|
||||
homepage = "https://github.com/trezor/python-shamir-mnemonic";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ "1000101" ];
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers."1000101" ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user