nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildPythonPackage
2, fetchPypi
3, lib
4
5# pythonPackages
6, msal
7, portalocker
8}:
9
10buildPythonPackage rec {
11 pname = "msal-extensions";
12 version = "0.1.3";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "1p05cbfksnhijx1il7s24js2ydzgxbpiasf607qdpb5sljlp3qar";
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}