lol

python3Packages.simpleldap: remove

Fairly outdated and incompatible with Python 3, see the following links
for further reference:

* https://github.com/gdub/python-simpleldap/blob/0.8/setup.py#L12-L14
* https://github.com/NixOS/nixpkgs/pull/43782#issuecomment-406186881

-24
-24
pkgs/top-level/python-packages.nix
··· 12638 12638 12639 12639 simplejson = callPackage ../development/python-modules/simplejson { }; 12640 12640 12641 - simpleldap = buildPythonPackage rec { 12642 - version = "0.8"; 12643 - name = "simpleldap-${version}"; 12644 - 12645 - propagatedBuildInputs = with self; [ ldap ]; 12646 - buildInputs = with self; [ pep8 pytest tox ]; 12647 - 12648 - src = pkgs.fetchurl { 12649 - url = "mirror://pypi/s/simpleldap/simpleldap-${version}.tar.gz"; 12650 - sha256 = "a5916680a7fe1b2c5d74dc76351be2941d03b7b94a50d8520280e3f588a84e61"; 12651 - }; 12652 - 12653 - meta = { 12654 - description = "A module that makes simple LDAP usage simple"; 12655 - longDescription = '' 12656 - A small wrapper around the python-ldap library that provides a more 12657 - Pythonic interface for LDAP server connections, LDAP objects, and the 12658 - common get and search operations. 12659 - ''; 12660 - license = licenses.mit; 12661 - maintainers = with maintainers; [ layus ]; 12662 - }; 12663 - }; 12664 - 12665 12641 simpleparse = buildPythonPackage rec { 12666 12642 version = "2.1.1"; 12667 12643 name = "simpleparse-${version}";