nixpkgs/pkgs/development/python-modules/ldaptor/default.nix

38 lines
715 B
Nix
Raw Normal View History

2018-01-07 09:20:35 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, twisted
2020-02-22 22:05:18 +00:00
, passlib
2018-01-07 09:20:35 +00:00
, pycrypto
, pyopenssl
, pyparsing
2020-02-22 22:05:18 +00:00
, service-identity
2018-01-07 09:20:35 +00:00
, zope_interface
, isPy3k
}:
buildPythonPackage rec {
pname = "ldaptor";
version = "20.1.1";
2018-01-07 09:20:35 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "778f45d68a0b5d63a892c804c05e57b464413a41d8ae52f92ae569321473ab67";
2018-01-07 09:20:35 +00:00
};
propagatedBuildInputs = [
2020-02-22 22:05:18 +00:00
twisted passlib pycrypto pyopenssl pyparsing service-identity zope_interface
2018-01-07 09:20:35 +00:00
];
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";
2018-01-07 09:20:35 +00:00
license = lib.licenses.mit;
};
2020-02-22 22:05:18 +00:00
}