Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pylibacl / default.nix
blob68f2d2d125ca7581d7ca75a08387345c072468c0
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pkgs
5 }:
7 buildPythonPackage rec {
8   pname = "pylibacl";
9   version = "0.7.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-7UludMpUUtXUzr4j3yKepGJzWpZSi5+ijjzh96K+0xo=";
15   };
17   # ERROR: testExtended (tests.test_acls.AclExtensions)
18   # IOError: [Errno 0] Error
19   doCheck = false;
21   buildInputs = with pkgs; [ acl ];
23   meta = {
24     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";
25     license = lib.licenses.lgpl21Plus;
26   };