mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
python3Packages.msldap: init at 0.3.22
This commit is contained in:
parent
8addce8b60
commit
4a286edf6b
42
pkgs/development/python-modules/msldap/default.nix
Normal file
42
pkgs/development/python-modules/msldap/default.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, asn1crypto
|
||||
, asysocks
|
||||
, minikerberos
|
||||
, prompt_toolkit
|
||||
, tqdm
|
||||
, winacl
|
||||
, winsspi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "msldap";
|
||||
version = "0.3.22";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1ivq56953skql8f255nqx2sg4mm0kz2pr5b4dx62dx7jdgd1xym3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
asn1crypto
|
||||
asysocks
|
||||
minikerberos
|
||||
prompt_toolkit
|
||||
tqdm
|
||||
winacl
|
||||
winsspi
|
||||
];
|
||||
|
||||
# Project doesn't have tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "msldap" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python LDAP library for auditing MS AD";
|
||||
homepage = "https://github.com/skelsec/msldap";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user