summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorKevin Amado <kamadorueda@gmail.com>2020-01-20 10:46:33 -0500
committerJon <jonringer@users.noreply.github.com>2020-01-21 15:59:25 -0800
commit2dddf14da4c4e79aed9f1f6dee8a95f25e2eb4e9 (patch)
treee38c725bf5171074731f69ae5346df89429beedc /pkgs
parent4e26252c3df4fbe993721bacab5a0ca08d11179e (diff)
downloadnixpkgs-2dddf14da4c4e79aed9f1f6dee8a95f25e2eb4e9.tar
nixpkgs-2dddf14da4c4e79aed9f1f6dee8a95f25e2eb4e9.tar.gz
nixpkgs-2dddf14da4c4e79aed9f1f6dee8a95f25e2eb4e9.tar.bz2
nixpkgs-2dddf14da4c4e79aed9f1f6dee8a95f25e2eb4e9.tar.lz
nixpkgs-2dddf14da4c4e79aed9f1f6dee8a95f25e2eb4e9.tar.xz
nixpkgs-2dddf14da4c4e79aed9f1f6dee8a95f25e2eb4e9.tar.zst
nixpkgs-2dddf14da4c4e79aed9f1f6dee8a95f25e2eb4e9.zip
fluidasserts: 20.1.22554 -> 20.1.28253
- bumps the fluidasserts version to 20.1.28253
- in this version the build process is deterministic and
  reproducible (you'll get the same hash on multiple builds)
- see: https://gitlab.com/fluidattacks/asserts/issues/873
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/fluidasserts/default.nix40
1 files changed, 10 insertions, 30 deletions
diff --git a/pkgs/development/python-modules/fluidasserts/default.nix b/pkgs/development/python-modules/fluidasserts/default.nix
index da0d2d41407..f76692c50d9 100644
--- a/pkgs/development/python-modules/fluidasserts/default.nix
+++ b/pkgs/development/python-modules/fluidasserts/default.nix
@@ -57,13 +57,13 @@
 
 buildPythonPackage rec {
   pname = "fluidasserts";
-  version = "20.1.22554";
+  version = "20.1.28253";
   disabled = !isPy37;
 
   src = fetchPypi {
     inherit pname version;
     extension = "zip";
-    sha256 = "0j7zppwingi9m58z51phy40d69jlskx1vgyz1gj9miqhbjfdymhi";
+    sha256 = "1d2smx9ywd1azsiwgavp69vlixmvwaabshprm192wnmprbghsp6c";
   };
 
   patchPhase = ''
@@ -82,6 +82,7 @@ buildPythonPackage rec {
       --replace "'pymssql==2.1.4'," "" \
       --replace "'pytesseract==0.3.0'," "" \
       --replace "'pywinrm==0.4.1'," "" \
+      --replace "'mitmproxy==5.0.1'," "" \
 
   '';
 
@@ -145,34 +146,13 @@ buildPythonPackage rec {
     rm test/conftest.py
 
     pytest \
-      test/test_cloud_aws_cloudformation_cloudfront.py \
-      test/test_cloud_aws_cloudformation_dynamodb.py \
-      test/test_cloud_aws_cloudformation_ec2.py \
-      test/test_cloud_aws_cloudformation_elb.py \
-      test/test_cloud_aws_cloudformation_elb2.py \
-      test/test_cloud_aws_cloudformation_fsx.py \
-      test/test_cloud_aws_cloudformation_iam.py \
-      test/test_cloud_aws_cloudformation_kms.py \
-      test/test_cloud_aws_cloudformation_rds.py \
-      test/test_cloud_aws_cloudformation_s3.py \
-      test/test_cloud_aws_cloudformation_secretsmanager.py \
-      test/test_format_apk.py \
-      test/test_format_file.py \
-      test/test_format_jks.py \
-      test/test_format_jwt.py \
-      test/test_format_pdf.py \
-      test/test_format_pkcs12.py \
-      test/test_format_string.py \
-      test/test_helper_asynchronous.py \
-      test/test_helper_crypto.py \
-      test/test_lang_core.py \
-      test/test_lang_csharp.py \
-      test/test_lang_docker.py \
-      test/test_lang_dotnetconfig.py \
-      test/test_lang_html.py \
-      test/test_lang_php.py \
-      test/test_lang_python.py \
-      test/test_lang_rpgle.py \
+      test/test_cloud_aws_cloudformation_{cloudfront,dynamodb,ec2,elb,elb2}.py \
+      test/test_cloud_aws_cloudformation_{fsx,iam,kms,rds,s3,secretsmanager}.py \
+      test/test_format_{apk,file,jks,jwt,pdf,pkcs12,string}.py \
+      test/test_helper_{asynchronous,crypto}.py \
+      test/test_lang_{javascript,java}.py \
+      test/test_lang_{core,csharp,docker,dotnetconfig,html,php,python,rpgle}.py \
+      test/test_utils_generic.py
 
   '';