at master 650 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pkgs, 6}: 7 8buildPythonPackage rec { 9 pname = "pylibacl"; 10 version = "0.7.3"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-nZ/7WA4MWC1d5ZgIf3X2lARYsjgQxhVSkUPGGxcr+SI="; 16 }; 17 18 # ERROR: testExtended (tests.test_acls.AclExtensions) 19 # IOError: [Errno 0] Error 20 doCheck = false; 21 22 buildInputs = with pkgs; [ acl ]; 23 24 meta = { 25 description = "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"; 26 license = lib.licenses.lgpl21Plus; 27 }; 28}