about summary refs log tree commit diff
path: root/pkgs/development/python-modules/auth0-python/default.nix
blob: 7e2b09cca684209c2f896ec180de7fba0385be5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, buildPythonPackage
, fetchPypi
, requests
, mock
}:

buildPythonPackage rec {
  pname = "auth0-python";
  version = "3.9.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c2fdc3ff230638a2776d2b3761e787ca93dc33a26f841504fc260f947256f453";
  };

  propagatedBuildInputs = [
    requests
  ];

  checkInputs = [
    mock
  ];

  meta = with lib; {
    description = "Auth0 Python SDK";
    homepage = "https://github.com/auth0/auth0-python";
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}