Commit c3f48fc8 authored by Fabian Affolter's avatar Fabian Affolter Committed by Yt
Browse files

python310Packages.pymilvus: add changelog to meta

parent e4b2e56f
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@
, mmh3
, setuptools-scm
}:

buildPythonPackage rec {
  pname = "pymilvus";
  version = "2.2.6";
@@ -26,13 +27,16 @@ buildPythonPackage rec {
    ujson
    pandas
    mmh3
  ] ++ lib.optionals stdenv.isLinux [ setuptools-scm ];
  ] ++ lib.optionals stdenv.isLinux [
    setuptools-scm
  ];

  doCheck = false;

  meta = with lib; {
    description = "Python SDK for Milvus";
    homepage = "https://github.com/milvus-io/pymilvus";
    description = "Python SDK for Milvus. ";
    changelog = "https://github.com/milvus-io/pymilvus/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ happysalada ];
  };