Unverified Commit 9c7f90f7 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

python3Packages.dropbox: fix eval warning, clean up meta (#404331)

parents 23d3cb96 f04948a8
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ buildPythonPackage rec {

  postPatch = ''
    substituteInPlace setup.py \
      --replace "'pytest-runner==5.2.0'," ""
      --replace-fail "'pytest-runner==5.2.0'," ""
  '';

  pythonImportsCheck = [ "dropbox" ];
@@ -90,11 +90,11 @@ buildPythonPackage rec {
    "test_bad_pins_session"
  ];

  meta = with lib; {
  meta = {
    description = "Python library for Dropbox's HTTP-based Core and Datastore APIs";
    homepage = "https://github.com/dropbox/dropbox-sdk-python";
    changelog = "https://github.com/dropbox/dropbox-sdk-python/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ sfrijters ];
    changelog = "https://github.com/dropbox/dropbox-sdk-python/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ sfrijters ];
  };
}