pythonPackages.ldappool: move expression

This commit is contained in:
Robert Schütz
2018-03-02 02:03:28 +01:00
parent c0466ef834
commit f14c9ae883
2 changed files with 20 additions and 17 deletions

View File

@@ -0,0 +1,19 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
name = "ldappool-${version}";
version = "1.0";
src = fetchPypi {
pname = "ldappool";
inherit version;
sha256 = "1akmzf51cjfvmd0nvvm562z1w9vq45zsx6fa72kraqgsgxhnrhqz";
};
# Judging from SyntaxError
disabled = isPy3k;
meta = with lib; {
homepage = "https://github.com/mozilla-services/ldappool";
};
}