11 buildPythonPackage rec {
12 pname = "dsinternals";
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
20 repo = "pydsinternals";
22 hash = "sha256-C1ar9c4F4WI5ICX7PJe8FzVwK8bxZds+kMBpttEp9Ko=";
25 propagatedBuildInputs = [
30 nativeCheckInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "dsinternals" ];
34 pytestFlagsArray = [ "tests/*.py" ];
37 description = "Module to interact with Windows Active Directory";
38 homepage = "https://github.com/p0dalirius/pydsinternals";
39 license = licenses.gpl2Only;
40 maintainers = with maintainers; [ fab ];