From e2f4d626ec480b322682b4245d47ebccf8ff81b2 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Sun, 6 Dec 2020 23:19:31 +0000 Subject: python2.pkgs.pylibacl: init at 0.5.4 --- pkgs/development/python-modules/pylibacl/0.5.nix | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/development/python-modules/pylibacl/0.5.nix (limited to 'pkgs/development/python-modules/pylibacl') diff --git a/pkgs/development/python-modules/pylibacl/0.5.nix b/pkgs/development/python-modules/pylibacl/0.5.nix new file mode 100644 index 000000000000..284a795b4c22 --- /dev/null +++ b/pkgs/development/python-modules/pylibacl/0.5.nix @@ -0,0 +1,26 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pkgs +}: + +buildPythonPackage rec { + pname = "pylibacl"; + version = "0.5.4"; + + src = fetchPypi { + inherit pname version; + sha256 = "0drvxb21y7p0aikcv3jx90vdcjk96kibf9x8qgxic2prxxd3f3q6"; + }; + + # ERROR: testExtended (tests.test_acls.AclExtensions) + # IOError: [Errno 0] Error + doCheck = false; + + buildInputs = with 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 = lib.licenses.lgpl21Plus; + }; +} -- cgit v1.2.3