1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "winacl"; 8 version = "0.1.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "sha256-V+W0WRtL4rJD1LeYgr0PtiKdWTDQYv2ulB1divaqKe4="; 13 }; 14 15 # Project doesn't have tests 16 doCheck = false; 17 pythonImportsCheck = [ "winacl" ]; 18 19 meta = with lib; { 20 description = "Python module for ACL/ACE/Security descriptor manipulation"; 21 homepage = "https://github.com/skelsec/winacl"; 22 license = with licenses; [ mit ]; 23 maintainers = with maintainers; [ fab ]; 24 }; 25}