1{ lib
2, buildPythonPackage
3, fetchPypi
4, pkgs
5}:
6
7buildPythonPackage rec {
8 pname = "pylibacl";
9 version = "0.7.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "sha256-7UludMpUUtXUzr4j3yKepGJzWpZSi5+ijjzh96K+0xo=";
14 };
15
16 # ERROR: testExtended (tests.test_acls.AclExtensions)
17 # IOError: [Errno 0] Error
18 doCheck = false;
19
20 buildInputs = with pkgs; [ acl ];
21
22 meta = {
23 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";
24 license = lib.licenses.lgpl21Plus;
25 };
26}