Unverified Commit 1304eef9 authored by Stefan Frijters's avatar Stefan Frijters
Browse files

python3Packages.wrapio: remove 'with lib'

parent 921a47b8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -22,11 +22,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "wrapio" ];

  meta = with lib; {
  meta = {
    description = "Handling event-based streams";
    homepage = "https://github.com/Exahilosys/wrapio";
    changelog = "https://github.com/Exahilosys/wrapio/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ sfrijters ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ sfrijters ];
  };
}