mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +00:00
python310Packages.bonsai: init at 5.1.1
This commit is contained in:
parent
125625e5e5
commit
f2711088ee
77
pkgs/development/python-modules/bonsai/default.nix
Normal file
77
pkgs/development/python-modules/bonsai/default.nix
Normal file
@ -0,0 +1,77 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, cyrus_sasl
|
||||
, openldap
|
||||
, typing-extensions
|
||||
, gevent
|
||||
, tornado
|
||||
, trio
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bonsai";
|
||||
version = "1.5.1";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "noirello";
|
||||
repo = "bonsai";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-UR/Ds5famD8kuDa6IIIyEv45eJuAcoygXef8XE+5Cxk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
cyrus_sasl
|
||||
openldap
|
||||
];
|
||||
|
||||
propagatedBuildInputs = lib.optionals (pythonOlder "3.8") [
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
gevent = [ gevent ];
|
||||
tornado = [ tornado ];
|
||||
trio = [ trio ];
|
||||
};
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# requires running LDAP server
|
||||
"tests/test_asyncio.py"
|
||||
"tests/test_ldapclient.py"
|
||||
"tests/test_ldapconnection.py"
|
||||
"tests/test_ldapentry.py"
|
||||
"tests/test_ldapreference.py"
|
||||
"tests/test_pool.py"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# requires running LDAP server
|
||||
"test_set_async_connect"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "bonsai" ];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/noirello/bonsai/blob/${src.rev}/CHANGELOG.rst";
|
||||
description = "Python 3 module for accessing LDAP directory servers";
|
||||
homepage = "https://github.com/noirello/bonsai";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -1347,6 +1347,8 @@ self: super: with self; {
|
||||
|
||||
bond-async = callPackage ../development/python-modules/bond-async { };
|
||||
|
||||
bonsai = callPackage ../development/python-modules/bonsai { };
|
||||
|
||||
booleanoperations = callPackage ../development/python-modules/booleanoperations { };
|
||||
|
||||
boolean-py = callPackage ../development/python-modules/boolean-py { };
|
||||
|
Loading…
Reference in New Issue
Block a user