···743743744744 pytestFlagsArray = [
745745 # parallelize test run
746746- "--numprocesses auto"
746746+ "--numprocesses $NIX_BUILD_CORES"
747747 # assign tests grouped by file to workers
748748 "--dist loadfile"
749749 # retry racy tests that end in "RuntimeError: Event loop is closed"
+2-2
pkgs/tools/audio/abcmidi/default.nix
···2233stdenv.mkDerivation rec {
44 pname = "abcMIDI";
55- version = "2021.06.27";
55+ version = "2021.09.15";
6677 src = fetchzip {
88 url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";
99- sha256 = "sha256-tLKxs1p1CIU/2XV1fMgWrwdtePeXOBZUMjz46kgp9C0=";
99+ sha256 = "sha256-BrEgvrAHNfJpFTlI8tec+9w3G+5YR15lbzh/RKKpQ1c=";
1010 };
11111212 meta = with lib; {
-6
pkgs/tools/misc/yt-dlp/default.nix
···2727 sha256 = "sha256-yn53zbBVuiaD31sIB6qxweEgy+AsjzXZ0yk9lNva6mM=";
2828 };
29293030- # build_lazy_extractors assumes this directory exists but it is not present in
3131- # the PyPI package
3232- postPatch = ''
3333- mkdir -p ytdlp_plugins/extractor
3434- '';
3535-3630 propagatedBuildInputs = [ websockets mutagen ]
3731 ++ lib.optional hlsEncryptedSupport pycryptodome;
3832
+24
pkgs/tools/networking/proxychains-ng/default.nix
···11+{ lib
22+, stdenv
33+, fetchFromGitHub
44+}:
55+66+stdenv.mkDerivation rec {
77+ pname = "proxychains-ng";
88+ version = "4.15";
99+1010+ src = fetchFromGitHub {
1111+ owner = "rofl0r";
1212+ repo = pname;
1313+ rev = "v${version}";
1414+ sha256 = "128d502y8pn7q2ls6glx9bvibwzfh321sah5r5li6b6iywh2zqlc";
1515+ };
1616+1717+ meta = with lib; {
1818+ description = "A preloader which hooks calls to sockets in dynamically linked programs and redirects it through one or more socks/http proxies";
1919+ homepage = "https://github.com/rofl0r/proxychains-ng";
2020+ license = licenses.gpl2Plus;
2121+ maintainers = with maintainers; [ zenithal ];
2222+ platforms = platforms.linux;
2323+ };
2424+}