python3Packages.bonsai: 1.5.3 -> 1.5.4

Diff: https://github.com/noirello/bonsai/compare/v1.5.3...v1.5.4

Changelog: https://github.com/noirello/bonsai/blob/v1.5.4/CHANGELOG.rst

Changed files
+4 -8
pkgs
development
python-modules
bonsai
+4 -8
pkgs/development/python-modules/bonsai/default.nix
···
{
lib,
buildPythonPackage,
-
pythonOlder,
fetchFromGitHub,
setuptools,
cyrus_sasl,
···
buildPythonPackage rec {
pname = "bonsai";
-
version = "1.5.3";
-
-
disabled = pythonOlder "3.8";
-
+
version = "1.5.4";
pyproject = true;
src = fetchFromGitHub {
owner = "noirello";
repo = "bonsai";
-
rev = "v${version}";
-
hash = "sha256-SAP/YeWqow5dqXlXDzjnTWIfJhMwVeZSSUfWr1Mgmng=";
+
tag = "v${version}";
+
hash = "sha256-1AKdayvkRIY8F9UhuEvGg3uboYh7A/4BkmJ11RkYI9w=";
};
build-system = [ setuptools ];
···
pythonImportsCheck = [ "bonsai" ];
meta = {
-
changelog = "https://github.com/noirello/bonsai/blob/${src.rev}/CHANGELOG.rst";
+
changelog = "https://github.com/noirello/bonsai/blob/${src.tag}/CHANGELOG.rst";
description = "Python 3 module for accessing LDAP directory servers";
homepage = "https://github.com/noirello/bonsai";
license = lib.licenses.mit;