add package python-pylibacl

This commit is contained in:
Mathijs Kwik 2012-08-05 13:50:47 +02:00
parent b39897bdfd
commit 0ab4328279

View File

@ -1756,6 +1756,25 @@ let pythonPackages = python.modules // rec {
};
pylibacl = buildPythonPackage (rec {
name = "pylibacl-0.5.1";
src = fetchurl {
url = "https://github.com/downloads/iustin/pylibacl/${name}.tar.gz";
sha256 = "1idks7j9bn62xzsaxkvhl7bdq6ws8kv8aa0wahfh7724qlbbcf1k";
};
doCheck = false;
buildInputs = [ pkgs.acl ];
meta = {
description = "A Python extension module for POSIX ACLs. It can be used to query, list, add, and remove ACLs from files and directories under operating systems that support them.";
license = stdenv.lib.licenses.lgpl21Plus;
};
});
pylint = buildPythonPackage rec {
name = "pylint-0.23.0";