summary refs log tree commit diff
path: root/pkgs/development/python-modules/myjwt
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-05-08 22:40:02 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-08 13:43:35 -0700
commit13f0da71e613fab9303af5af60c67d4fc5a60051 (patch)
tree1864141b1f8512e8360fb733cc3ef60c367b5cea /pkgs/development/python-modules/myjwt
parentf6987986d3249ed8358e78ec569fbc0b838d103a (diff)
downloadnixpkgs-13f0da71e613fab9303af5af60c67d4fc5a60051.tar
nixpkgs-13f0da71e613fab9303af5af60c67d4fc5a60051.tar.gz
nixpkgs-13f0da71e613fab9303af5af60c67d4fc5a60051.tar.bz2
nixpkgs-13f0da71e613fab9303af5af60c67d4fc5a60051.tar.lz
nixpkgs-13f0da71e613fab9303af5af60c67d4fc5a60051.tar.xz
nixpkgs-13f0da71e613fab9303af5af60c67d4fc5a60051.tar.zst
nixpkgs-13f0da71e613fab9303af5af60c67d4fc5a60051.zip
python3Packages.myjwt: 1.4.0 -> 1.5.0
Diffstat (limited to 'pkgs/development/python-modules/myjwt')
-rw-r--r--pkgs/development/python-modules/myjwt/default.nix21
-rw-r--r--pkgs/development/python-modules/myjwt/pinning.patch21
2 files changed, 12 insertions, 30 deletions
diff --git a/pkgs/development/python-modules/myjwt/default.nix b/pkgs/development/python-modules/myjwt/default.nix
index d80e66e07bf..0fecd439e3f 100644
--- a/pkgs/development/python-modules/myjwt/default.nix
+++ b/pkgs/development/python-modules/myjwt/default.nix
@@ -1,33 +1,31 @@
 { lib
 , stdenv
 , buildPythonPackage
-, fetchFromGitHub
 , click
 , colorama
 , cryptography
 , exrex
+, fetchFromGitHub
 , pyopenssl
 , pyperclip
+, pytest-mock
+, pytestCheckHook
 , questionary
 , requests
-, pytestCheckHook
-, pytest-mock
 , requests-mock
 }:
 
 buildPythonPackage rec {
   pname = "myjwt";
-  version = "1.4.0";
+  version = "1.5.0";
 
   src = fetchFromGitHub {
     owner = "mBouamama";
     repo = "MyJWT";
     rev = version;
-    sha256 = "1n3lvdrzp6wbbcygjwa7xar2jnhjnrz7a9khmn2phhkkngxm5rc4";
+    sha256 = "sha256-kZkqFeaQPd56BVaYmCWAbVu1xwbPAIlQC3u5/x3dh7A=";
   };
 
-  patches = [ ./pinning.patch ];
-
   propagatedBuildInputs = [
     click
     colorama
@@ -40,15 +38,20 @@ buildPythonPackage rec {
   ];
 
   checkInputs = [
-    pytestCheckHook
     pytest-mock
+    pytestCheckHook
     requests-mock
   ];
 
+  postPatch = ''
+    # Remove all version pinning (E.g., tornado==5.1.1 -> tornado)
+    sed -i -e "s/==[0-9.]*//" requirements.txt
+  '';
+
   pythonImportsCheck = [ "myjwt" ];
 
   meta = with lib; {
-    description = "CLI tool for testing vulnerabilities on Json Web Token(JWT)";
+    description = "CLI tool for testing vulnerabilities of JSON Web Tokens (JWT)";
     homepage = "https://github.com/mBouamama/MyJWT";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ fab ];
diff --git a/pkgs/development/python-modules/myjwt/pinning.patch b/pkgs/development/python-modules/myjwt/pinning.patch
deleted file mode 100644
index abae9d0e2ec..00000000000
--- a/pkgs/development/python-modules/myjwt/pinning.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-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