summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-arango
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-arango')
-rw-r--r--pkgs/development/python-modules/python-arango/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/python-arango/default.nix b/pkgs/development/python-modules/python-arango/default.nix
index ad7b743a9af9..c5c3a93c3bae 100644
--- a/pkgs/development/python-modules/python-arango/default.nix
+++ b/pkgs/development/python-modules/python-arango/default.nix
@@ -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 ];
};
}