about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/ldaptor/default.nix
blob: 4eab700ff14058938749739a69145f16f1c3cc2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ lib
, buildPythonPackage
, fetchPypi
, twisted
, pycrypto
, pyopenssl
, pyparsing
, zope_interface
, isPy3k
}:

buildPythonPackage rec {
  pname = "ldaptor";
  version = "16.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6b9ebe5814e9e7091703c4e3bfeae73b46508b4678e2ff403cddaedf8213815d";
  };

  propagatedBuildInputs = [
    twisted pycrypto pyopenssl pyparsing zope_interface
  ];

  disabled = isPy3k;

  # TypeError: None is neither bytes nor unicode
  doCheck = false;

  meta = {
    description = "A Pure-Python Twisted library for LDAP";
    homepage = https://github.com/twisted/ldaptor;
    license = lib.licenses.mit;
  };
}