Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #8119 from mbbx6spp/fix-dd-agent-package

Fix dd-agent buildInputs to include pythonPackages.psutil

+11 -1
+11 -1
pkgs/tools/networking/dd-agent/default.nix
··· 12 12 sha256 = "05flcbzpnmhf6qskkccbfk957sl9hhydlp4p5vqhs62hkpwmqwan"; 13 13 }; 14 14 15 - buildInputs = [ python unzip makeWrapper pythonPackages.psycopg2 pythonPackages.ntplib pythonPackages.simplejson pythonPackages.pyyaml pythonPackages.requests ]; 15 + buildInputs = [ 16 + python 17 + unzip 18 + makeWrapper 19 + pythonPackages.psycopg2 20 + pythonPackages.psutil 21 + pythonPackages.ntplib 22 + pythonPackages.simplejson 23 + pythonPackages.pyyaml 24 + pythonPackages.requests 25 + ]; 16 26 propagatedBuildInputs = [ python tornado ]; 17 27 18 28 buildCommand = ''