diff options
Diffstat (limited to 'pkgs/development/python-modules/pylibacl/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pylibacl/default.nix | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/pylibacl/default.nix b/pkgs/development/python-modules/pylibacl/default.nix index 68f2d2d125ca..9438cb9102b9 100644 --- a/pkgs/development/python-modules/pylibacl/default.nix +++ b/pkgs/development/python-modules/pylibacl/default.nix @@ -1,7 +1,8 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pkgs +{ + lib, + buildPythonPackage, + fetchPypi, + pkgs, }: buildPythonPackage rec { @@ -11,7 +12,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - sha256 = "sha256-7UludMpUUtXUzr4j3yKepGJzWpZSi5+ijjzh96K+0xo="; + hash = "sha256-7UludMpUUtXUzr4j3yKepGJzWpZSi5+ijjzh96K+0xo="; }; # ERROR: testExtended (tests.test_acls.AclExtensions) @@ -21,7 +22,7 @@ buildPythonPackage rec { 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"; + 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"; license = lib.licenses.lgpl21Plus; }; } |