Merge pull request #66842 from tilpner/maintainer-fixup

tree-wide: fix malformed meta.maintainers
This commit is contained in:
worldofpeace
2019-08-19 11:35:10 -04:00
committed by GitHub
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" ];
};
}