Skip to content

Commit

Permalink
pythonPackages.auth0-python: init at 3.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
costrouc authored and Jon committed Apr 28, 2020
1 parent 359c6b5 commit 27c7e7d
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/development/python-modules/auth0-python/default.nix
@@ -0,0 +1,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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -248,6 +248,8 @@ in {

authres = callPackage ../development/python-modules/authres { };

auth0-python = callPackage ../development/python-modules/auth0-python { };

autograd = callPackage ../development/python-modules/autograd { };

autologging = callPackage ../development/python-modules/autologging { };
Expand Down

0 comments on commit 27c7e7d

Please sign in to comment.