mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 13:40:28 +03:00
python313Packages.bloodyad: 2.1.9 -> 2.1.18
https://github.com/CravateRouge/bloodyAD/releases/tag/v2.1.18
This commit is contained in:
parent
f53370b15b
commit
a0dcf1f7a6
1 changed files with 18 additions and 7 deletions
|
@ -2,12 +2,13 @@
|
|||
lib,
|
||||
asn1crypto,
|
||||
buildPythonPackage,
|
||||
certipy,
|
||||
cryptography,
|
||||
dnspython,
|
||||
fetchFromGitHub,
|
||||
hatchling,
|
||||
minikerberos,
|
||||
msldap,
|
||||
minikerberos-bad,
|
||||
msldap-bad,
|
||||
pyasn1,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
|
@ -16,7 +17,7 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "bloodyad";
|
||||
version = "2.1.9";
|
||||
version = "2.1.18";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
@ -25,33 +26,43 @@ buildPythonPackage rec {
|
|||
owner = "CravateRouge";
|
||||
repo = "bloodyAD";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-XqCP2GfS8hxlFU4Mndeh+7Ll2kXJ3Dei+AGp/oy0PUg=";
|
||||
hash = "sha256-4/5cAYt3IhRxbd8bSXlyvCOCMLIJjWxWnke0vslyD2Y=";
|
||||
};
|
||||
|
||||
pythonRelaxDeps = [ "cryptography" ];
|
||||
|
||||
pythonRemoveDeps = [
|
||||
"minikerberos-bad"
|
||||
"msldap-bad"
|
||||
];
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [
|
||||
asn1crypto
|
||||
cryptography
|
||||
dnspython
|
||||
minikerberos
|
||||
msldap
|
||||
minikerberos-bad
|
||||
msldap-bad
|
||||
winacl
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
nativeCheckInputs = [
|
||||
certipy
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "bloodyAD" ];
|
||||
|
||||
disabledTests = [
|
||||
# Tests require network access
|
||||
"test_kerberos_authentications"
|
||||
"test_01AuthCreateUser"
|
||||
"test_02SearchAndGetChildAndGetWritable"
|
||||
"test_03UacOwnerGenericShadowGroupPasswordDCSync"
|
||||
"test_04ComputerRbcdGetSetAttribute"
|
||||
"test_06AddRemoveGetDnsRecord"
|
||||
"test_certificate_authentications"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue