Merge pull request #66842 from tilpner/maintainer-fixup
tree-wide: fix malformed meta.maintainers
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" ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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" ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user