summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-06-30 19:42:16 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-06-30 12:13:34 -0700
commitb163b113a0cdf4660be803ece6841a65372b573e (patch)
tree3a859dd4aa743f721354bbbdbefce22bba7e323d /pkgs
parentd9cd01bb2ad93d1a1bc12122e60fd6c1080c74c4 (diff)
downloadnixpkgs-b163b113a0cdf4660be803ece6841a65372b573e.tar
nixpkgs-b163b113a0cdf4660be803ece6841a65372b573e.tar.gz
nixpkgs-b163b113a0cdf4660be803ece6841a65372b573e.tar.bz2
nixpkgs-b163b113a0cdf4660be803ece6841a65372b573e.tar.lz
nixpkgs-b163b113a0cdf4660be803ece6841a65372b573e.tar.xz
nixpkgs-b163b113a0cdf4660be803ece6841a65372b573e.tar.zst
nixpkgs-b163b113a0cdf4660be803ece6841a65372b573e.zip
flare-floss: migrate to py3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/flare-floss/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/tools/security/flare-floss/default.nix b/pkgs/tools/security/flare-floss/default.nix
index 954dd07d6ab..fbf065dc3b1 100644
--- a/pkgs/tools/security/flare-floss/default.nix
+++ b/pkgs/tools/security/flare-floss/default.nix
@@ -1,8 +1,9 @@
 { lib
-, python2
+, python3
 , fetchFromGitHub
 }:
-python2.pkgs.buildPythonPackage rec {
+
+python3.pkgs.buildPythonPackage rec {
   pname = "flare-floss";
   version = "1.7.0";
 
@@ -13,18 +14,17 @@ python2.pkgs.buildPythonPackage rec {
     sha256 = "GMOA1+qM2A/Qw33kOTIINEvjsfqjWQWBXHNemh3IK8w=";
   };
 
-  propagatedBuildInputs = with python2.pkgs; [
+  propagatedBuildInputs = with python3.pkgs; [
     pyyaml
     simplejson
     tabulate
     vivisect
     plugnplay
     viv-utils
-    enum34
   ];
 
-  checkInputs = [
-    python2.pkgs.pytestCheckHook
+  checkInputs = with python3.pkgs; [
+    pytestCheckHook
   ];
 
   disabledTests = [