Unverified Commit 0369cf9a authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

treewide: add stephen-huan as maintainer; python3Packages.{shippai,mathlibtools}: remove (#423707)

parents b6e4440e df229a1e
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -74,12 +74,15 @@ stdenv.mkDerivation rec {
        '';
  };

  meta = with lib; {
  meta = {
    description = "Variance-optimal paragraph formatter";
    homepage = "https://github.com/stephen-huan/inflow";
    license = licenses.unlicense;
    license = lib.licenses.unlicense;
    mainProgram = "inflow";
    maintainers = with maintainers; [ fbrs ];
    platforms = platforms.all;
    maintainers = with lib.maintainers; [
      fbrs
      stephen-huan
    ];
    platforms = lib.platforms.all;
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ stdenvNoCC.mkDerivation {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    description = "Japanese font package with Mincho and Gothic fonts";
    longDescription = ''
      IPAex font is a Japanese font developed by the Information-technology
@@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation {
      This is the successor to the IPA fonts.
    '';
    homepage = "https://moji.or.jp/ipafont/";
    license = licenses.ipa;
    maintainers = with maintainers; [ ];
    license = lib.licenses.ipa;
    maintainers = with lib.maintainers; [ stephen-huan ];
  };
}
+3 −3
Original line number Diff line number Diff line
@@ -87,11 +87,11 @@ python3.pkgs.buildPythonApplication rec {

  passthru.tests.version = testers.testVersion { package = offlineimap; };

  meta = with lib; {
  meta = {
    description = "Synchronize emails between two repositories, so that you can read the same mailbox from multiple computers";
    homepage = "http://offlineimap.org";
    license = licenses.gpl2Plus;
    maintainers = [ ];
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ stephen-huan ];
    mainProgram = "offlineimap";
  };
}
+0 −54
Original line number Diff line number Diff line
{
  lib,
  atomicwrites,
  buildPythonPackage,
  click,
  fetchPypi,
  gitpython,
  networkx,
  pydot,
  pygithub,
  pythonOlder,
  pyyaml,
  toml,
  tqdm,
}:

buildPythonPackage rec {
  pname = "mathlibtools";
  version = "1.3.2";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-mkn0y3NV/acnkqVzi8xd+Sex4QLvxxmt++FtsZmgrGs=";
  };

  propagatedBuildInputs = [
    atomicwrites
    click
    gitpython
    networkx
    pydot
    pygithub
    pyyaml
    toml
    tqdm
  ];

  # Requires internet access
  doCheck = false;

  pythonImportsCheck = [ "mathlibtools" ];

  meta = with lib; {
    description = "Supporting tool for Lean's mathlib";
    mainProgram = "leanproject";
    homepage = "https://github.com/leanprover-community/mathlib-tools";
    changelog = "https://github.com/leanprover-community/mathlib-tools/raw/v${version}/CHANGELOG.md";
    license = licenses.asl20;
    maintainers = with maintainers; [ ];
  };
}
+0 −24
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "shippai";
  # Please make sure that vdirsyncer still builds if you update this package.
  version = "0.3.2";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0r6iwvmay8ygn2m15pyjrk9am4mfpk7rkf0lcbcb15pnabixlyzj";
  };

  meta = with lib; {
    description = "Use Rust failures as Python exceptions";
    homepage = "https://github.com/untitaker/shippai";
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}
Loading