python310Packages.python-arango: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-01-02 11:52:04 +01:00 committed by GitHub
parent 0c4a91ee5f
commit e34bc5d628
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,14 +23,15 @@ in
buildPythonPackage rec {
pname = "python-arango";
version = "7.5.4";
disabled = pythonOlder "3.7";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ArangoDB-Community";
repo = "python-arango";
rev = "refs/tags/${version}";
sha256 = "sha256-b3UZuH2hpulRSThReBkDwh0MLJmc95HeWInmmMAl4g0=";
hash = "sha256-b3UZuH2hpulRSThReBkDwh0MLJmc95HeWInmmMAl4g0=";
};
propagatedBuildInputs = [
@ -127,12 +128,15 @@ buildPythonPackage rec {
"test_replication_applier"
];
pythonImportsCheck = [ "arango" ];
pythonImportsCheck = [
"arango"
];
meta = with lib; {
description = "Python Driver for ArangoDB";
homepage = "https://github.com/ArangoDB-Community/python-arango";
changelog = "https://github.com/ArangoDB-Community/python-arango/releases/tag/${version}";
license = licenses.mit;
maintainers = [ maintainers.jsoo1 ];
maintainers = with maintainers; [ jsoo1 ];
};
}