rename python3Packages.msldap-bad -> python3Packages.badldap

This commit is contained in:
Sarah Clark
2025-11-02 10:24:41 -08:00
parent e859fbd5f1
commit a090aa84b7
4 changed files with 12 additions and 12 deletions

View File

@@ -1,8 +1,8 @@
{ {
lib, lib,
asn1crypto, asn1crypto,
badauth,
asysocks, asysocks,
badauth,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
kerbad, kerbad,
@@ -16,13 +16,13 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "msldap-bad"; pname = "badldap";
version = "0.5.10"; version = "0.5.10";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "CravateRouge"; owner = "CravateRouge";
repo = "msldap-bAD"; repo = "badldap";
tag = version; tag = version;
hash = "sha256-CnHXEE1tdIXv+Qb3pS+cNxVtcTOVaq6mrQxu3wr1Xxo="; hash = "sha256-CnHXEE1tdIXv+Qb3pS+cNxVtcTOVaq6mrQxu3wr1Xxo=";
}; };
@@ -30,9 +30,9 @@ buildPythonPackage rec {
build-system = [ setuptools ]; build-system = [ setuptools ];
dependencies = [ dependencies = [
badauth
asn1crypto asn1crypto
asysocks asysocks
badauth
kerbad kerbad
prompt-toolkit prompt-toolkit
tabulate tabulate
@@ -45,12 +45,11 @@ buildPythonPackage rec {
# Module doesn't have tests # Module doesn't have tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "msldap" ]; pythonImportsCheck = [ "badldap" ];
meta = { meta = {
description = "LDAP library for auditing MS AD"; description = "LDAP library for auditing MS AD";
homepage = "https://github.com/CravateRouge/msldap-bAD"; homepage = "https://github.com/CravateRouge/badldap";
changelog = "https://github.com/CravateRouge/msldap-bAD/releases/tag/${src.tag}";
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = [ ]; maintainers = [ ];
}; };

View File

@@ -8,7 +8,7 @@
fetchFromGitHub, fetchFromGitHub,
hatchling, hatchling,
kerbad, kerbad,
msldap-bad, badldap,
pyasn1, pyasn1,
pytestCheckHook, pytestCheckHook,
pythonOlder, pythonOlder,
@@ -33,7 +33,7 @@ buildPythonPackage rec {
pythonRemoveDeps = [ pythonRemoveDeps = [
"kerbad" "kerbad"
"msldap-bad" "badldap"
]; ];
build-system = [ hatchling ]; build-system = [ hatchling ];
@@ -43,7 +43,7 @@ buildPythonPackage rec {
cryptography cryptography
dnspython dnspython
kerbad kerbad
msldap-bad badldap
winacl winacl
]; ];

View File

@@ -259,6 +259,7 @@ mapAliases {
mkdocs-macros = mkdocs-macros-plugin; # added 2025-09-02 mkdocs-macros = mkdocs-macros-plugin; # added 2025-09-02
mkdocs-minify = throw "'mkdocs-minify' has been renamed to/replaced by 'mkdocs-minify-plugin'"; # Converted to throw 2025-10-29 mkdocs-minify = throw "'mkdocs-minify' has been renamed to/replaced by 'mkdocs-minify-plugin'"; # Converted to throw 2025-10-29
mne-python = throw "'mne-python' has been renamed to/replaced by 'mne'"; # Converted to throw 2025-10-29 mne-python = throw "'mne-python' has been renamed to/replaced by 'mne'"; # Converted to throw 2025-10-29
msldap-bad = throw "'msldap-bad' has been renamed to/replaced by 'badldap'"; # added 2025-11-06
multi_key_dict = throw "'multi_key_dict' has been renamed to/replaced by 'multi-key-dict'"; # Converted to throw 2025-10-29 multi_key_dict = throw "'multi_key_dict' has been renamed to/replaced by 'multi-key-dict'"; # Converted to throw 2025-10-29
mutag = throw "mutag has been removed because it is unmaintained since 2018"; # added 2025-05-25 mutag = throw "mutag has been removed because it is unmaintained since 2018"; # added 2025-05-25
net2grid = throw "'net2grid' has been renamed to/replaced by 'gridnet'"; # Converted to throw 2025-10-29 net2grid = throw "'net2grid' has been renamed to/replaced by 'gridnet'"; # Converted to throw 2025-10-29

View File

@@ -1694,6 +1694,8 @@ self: super: with self; {
badauth = callPackage ../development/python-modules/badauth { }; badauth = callPackage ../development/python-modules/badauth { };
badldap = callPackage ../development/python-modules/badldap { };
badsecrets = callPackage ../development/python-modules/badsecrets { }; badsecrets = callPackage ../development/python-modules/badsecrets { };
bagit = callPackage ../development/python-modules/bagit { }; bagit = callPackage ../development/python-modules/bagit { };
@@ -9845,8 +9847,6 @@ self: super: with self; {
msldap = callPackage ../development/python-modules/msldap { }; msldap = callPackage ../development/python-modules/msldap { };
msldap-bad = callPackage ../development/python-modules/msldap-bad { };
mslex = callPackage ../development/python-modules/mslex { }; mslex = callPackage ../development/python-modules/mslex { };
msmart-ng = callPackage ../development/python-modules/msmart-ng { }; msmart-ng = callPackage ../development/python-modules/msmart-ng { };