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:
tilpner
2019-08-18 21:16:19 +02:00
parent 4835f65e95
commit 0281599ad2
8 changed files with 17 additions and 11 deletions

View File

@@ -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" ];
};
}

View File

@@ -40,10 +40,10 @@ buildPythonPackage rec {
runHook postCheck
'';
meta = {
meta = with lib; {
description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet";
homepage = "https://github.com/trezor/trezor-firmware/tree/master/python";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ np prusnak mmahut "1000101" ];
license = licenses.gpl3;
maintainers = with maintainers; [ np prusnak mmahut maintainers."1000101" ];
};
}