2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-30 08:44:31 +00:00
nixpkgs/pkgs/development/python-modules/auth0-python/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
881 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, mock
, pyjwt
2020-06-16 20:39:28 +00:00
, pytestCheckHook
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "auth0-python";
version = "3.22.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-05yJbF6eXz+vJx+plY5gqzRRYL2SjDnF7gSfX6WIS4E=";
};
propagatedBuildInputs = [
requests
pyjwt
];
checkInputs = [
mock
2020-06-16 20:39:28 +00:00
pytestCheckHook
];
disabledTests = [
# tries to ping websites (e.g. google.com)
2020-06-16 20:39:28 +00:00
"can_timeout"
"test_options_are_created_by_default"
"test_options_are_used_and_override"
];
pythonImportsCheck = [
"auth0"
];
meta = with lib; {
description = "Auth0 Python SDK";
homepage = "https://github.com/auth0/auth0-python";
license = licenses.mit;
maintainers = with maintainers; [ costrouc ];
};
}