mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
Merge pull request #206741 from r-ryantm/auto-update/python3.10-ldapdomaindump
python310Packages.ldapdomaindump: 0.9.3 -> 0.9.4
This commit is contained in:
commit
86c2dc84e5
@ -1,23 +1,41 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, dnspython, future, ldap3 }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, dnspython
|
||||
, future
|
||||
, ldap3
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ldapdomaindump";
|
||||
version = "0.9.3";
|
||||
version = "0.9.4";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "10cis8cllpa9qi5qil9k7521ag3921mxwg2wj9nyn0lk41rkjagc";
|
||||
hash = "sha256-mdzaFwUKllSZZuU7yJ5x2mcAlNU9lUKzsNAZfQNeb1I=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ dnspython future ldap3 ];
|
||||
propagatedBuildInputs = [
|
||||
dnspython
|
||||
future
|
||||
ldap3
|
||||
];
|
||||
|
||||
# requires ldap server
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "ldapdomaindump" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"ldapdomaindump"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Active Directory information dumper via LDAP";
|
||||
homepage = "https://github.com/dirkjanm/ldapdomaindump/";
|
||||
changelog = "https://github.com/dirkjanm/ldapdomaindump/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user