python3Packages.myjwt: init at 1.4.0
This commit is contained in:
parent
ecf62da940
commit
4fc83dc5f5
3 changed files with 85 additions and 0 deletions
58
pkgs/development/python-modules/myjwt/default.nix
Normal file
58
pkgs/development/python-modules/myjwt/default.nix
Normal file
|
@ -0,0 +1,58 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, click
|
||||
, colorama
|
||||
, cryptography
|
||||
, exrex
|
||||
, pyopenssl
|
||||
, pyperclip
|
||||
, questionary
|
||||
, requests
|
||||
, pytestCheckHook
|
||||
, pytest-mock
|
||||
, requests-mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "myjwt";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mBouamama";
|
||||
repo = "MyJWT";
|
||||
rev = version;
|
||||
sha256 = "1n3lvdrzp6wbbcygjwa7xar2jnhjnrz7a9khmn2phhkkngxm5rc4";
|
||||
};
|
||||
|
||||
patches = [ ./pinning.patch ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click
|
||||
colorama
|
||||
cryptography
|
||||
exrex
|
||||
pyopenssl
|
||||
pyperclip
|
||||
questionary
|
||||
requests
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
pytest-mock
|
||||
requests-mock
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "myjwt" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "CLI tool for testing vulnerabilities on Json Web Token(JWT)";
|
||||
homepage = "https://github.com/mBouamama/MyJWT";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
# Build failures
|
||||
broken = stdenv.isDarwin;
|
||||
};
|
||||
}
|
21
pkgs/development/python-modules/myjwt/pinning.patch
Normal file
21
pkgs/development/python-modules/myjwt/pinning.patch
Normal file
|
@ -0,0 +1,21 @@
|
|||
diff --git a/requirements.txt b/requirements.txt
|
||||
index 3017e02..2b465db 100644
|
||||
--- a/requirements.txt
|
||||
+++ b/requirements.txt
|
||||
@@ -1,8 +1,8 @@
|
||||
-click==7.1.2
|
||||
-colorama==0.4.4
|
||||
-cryptography==3.3.1
|
||||
-exrex==0.10.5
|
||||
-pyOpenSSL==20.0.1
|
||||
-pyperclip==1.8.1
|
||||
-questionary==1.9.0
|
||||
-requests==2.25.1
|
||||
+click
|
||||
+colorama
|
||||
+cryptography
|
||||
+exrex
|
||||
+pyOpenSSL
|
||||
+pyperclip
|
||||
+questionary
|
||||
+requests
|
|
@ -2076,6 +2076,8 @@ in {
|
|||
|
||||
exifread = callPackage ../development/python-modules/exifread { };
|
||||
|
||||
exrex = callPackage ../development/python-modules/exrex { };
|
||||
|
||||
extras = callPackage ../development/python-modules/extras { };
|
||||
|
||||
eyeD3 = callPackage ../development/python-modules/eyed3 { };
|
||||
|
@ -4175,6 +4177,8 @@ in {
|
|||
|
||||
mygpoclient = callPackage ../development/python-modules/mygpoclient { };
|
||||
|
||||
myjwt = callPackage ../development/python-modules/myjwt { };
|
||||
|
||||
mypy = callPackage ../development/python-modules/mypy { };
|
||||
|
||||
mypy-extensions = callPackage ../development/python-modules/mypy/extensions.nix { };
|
||||
|
@ -6503,6 +6507,8 @@ in {
|
|||
|
||||
querystring_parser = callPackage ../development/python-modules/querystring-parser { };
|
||||
|
||||
questionary = callPackage ../development/python-modules/questionary { };
|
||||
|
||||
queuelib = callPackage ../development/python-modules/queuelib { };
|
||||
|
||||
r2pipe = callPackage ../development/python-modules/r2pipe { };
|
||||
|
|
Loading…
Reference in a new issue