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

35 lines
658 B
Nix
Raw Normal View History

2018-01-07 09:20:35 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, twisted
, pycrypto
, pyopenssl
, pyparsing
, zope_interface
, isPy3k
}:
buildPythonPackage rec {
pname = "ldaptor";
2019-10-24 07:47:37 +01:00
version = "19.1.0";
2018-01-07 09:20:35 +00:00
src = fetchPypi {
inherit pname version;
2019-10-24 07:47:37 +01:00
sha256 = "64c7b870c77e34e4f5f9cfdf330b9702e89b4dd0f64275704f86c1468312c755";
2018-01-07 09:20:35 +00:00
};
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;
};
}