Unverified Commit f04948a8 authored by Stefan Frijters's avatar Stefan Frijters
Browse files

python3Packages.dropbox: clean up meta

parent 2d3db9e8
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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 ];
  };
}