linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pylibacl / default.nix
blob6bc0d74b5bae83f61d209348fd6c4f0f39f53536
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pkgs
5 }:
7 buildPythonPackage rec {
8   pname = "pylibacl";
9   version = "0.6.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "88a0a4322e3a62d797d61f96ec7f38d1c471c48a3cc3cedb32ab5c20aa98d9ff";
14   };
16   # ERROR: testExtended (tests.test_acls.AclExtensions)
17   # IOError: [Errno 0] Error
18   doCheck = false;
20   buildInputs = with pkgs; [ acl ];
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   };