Unverified Commit 84b559f7 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

python3Packages.wrapio: allow check phase, remove 'with lib' (#404333)

parents b05094bf 1304eef9
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -20,14 +20,13 @@ buildPythonPackage rec {

  build-system = [ setuptools ];

  doCheck = false;
  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 ];
  };
}