mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
add package python-pylibacl
This commit is contained in:
parent
b39897bdfd
commit
0ab4328279
@ -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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user