My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/neo4j-driver/default.nix

39 lines
722 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytz
}:
buildPythonPackage rec {
pname = "neo4j-driver";
version = "4.4.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "neo4j";
repo = "neo4j-python-driver";
rev = version;
sha256 = "sha256-YApj4EA0e3Q9V+ujnJC7/eSS0DybnZH22LnnSla/mw4=";
};
propagatedBuildInputs = [
pytz
];
# Missing dependencies
doCheck = false;
pythonImportsCheck = [
"neo4j"
];
meta = with lib; {
description = "Neo4j Bolt Driver for Python";
homepage = "https://github.com/neo4j/neo4j-python-driver";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}