Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 35 lines 696 B view raw
1{ buildPythonPackage 2, fetchPypi 3, lib 4 5# pythonPackages 6, msal 7, portalocker 8}: 9 10buildPythonPackage rec { 11 pname = "msal-extensions"; 12 version = "0.2.2"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "31414753c484679bb3b6c6401623eb4c3ccab630af215f2f78c1d5c4f8e1d1a9"; 17 }; 18 19 propagatedBuildInputs = [ 20 msal 21 portalocker 22 ]; 23 24 # No tests found 25 doCheck = false; 26 27 meta = with lib; { 28 description = "The Microsoft Authentication Library Extensions (MSAL-Extensions) for Python"; 29 homepage = "https://github.com/AzureAD/microsoft-authentication-library-for-python"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ 32 kamadorueda 33 ]; 34 }; 35}