Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 28 lines 641 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, minikerberos 5, pythonAtLeast 6}: 7 8buildPythonPackage rec { 9 pname = "winsspi"; 10 version = "0.0.9"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1q8hr8l8d9jxyp55qsrlkyhdhqjc0n18ajzms7hf1xkhdl7rrbd2"; 15 }; 16 propagatedBuildInputs = [ minikerberos ]; 17 18 # Project doesn't have tests 19 doCheck = false; 20 pythonImportsCheck = [ "winsspi" ]; 21 22 meta = with lib; { 23 description = "Python module for ACL/ACE/Security descriptor manipulation"; 24 homepage = "https://github.com/skelsec/winsspi"; 25 license = with licenses; [ mit ]; 26 maintainers = with maintainers; [ fab ]; 27 }; 28}