Merge pull request #237357 from figsoda/pynvim

python310Packages.pynvim: fix & adopt
This commit is contained in:
Weijia Wang 2023-06-12 17:57:23 +03:00 committed by GitHub
commit bbc050eaab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
msgpack
] ++ lib.optional (!isPyPy) [
] ++ lib.optionals (!isPyPy) [
greenlet
];
@ -42,6 +42,6 @@ buildPythonPackage rec {
homepage = "https://github.com/neovim/pynvim";
changelog = "https://github.com/neovim/pynvim/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ figsoda ];
};
}