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

Revert "duply: add pythonPackages.cryptography"

This reverts commit 400d1d5c89741c2d6e94aa5c60b13f03fdc53e1c.

Didn't fix https://github.com/NixOS/nixpkgs/issues/18112

+3 -5
+3 -5
pkgs/tools/backup/duply/default.nix
··· 2 2 , gnugrep, txt2man, makeWrapper, which 3 3 }: 4 4 5 - let 6 - pythonEnv = python.withPackages (ps: [ps.cryptography] ); 7 - in stdenv.mkDerivation { 5 + stdenv.mkDerivation { 8 6 name = "duply-1.9.2"; 9 7 10 8 src = fetchurl { ··· 13 11 }; 14 12 15 13 buildInputs = [ txt2man makeWrapper ]; 16 - propagatedBuildInputs = [ pythonEnv ]; 14 + 17 15 phases = [ "unpackPhase" "installPhase" ]; 18 16 19 17 installPhase = '' ··· 22 20 sed -i 's|/usr/bin/env bash|${bash}/bin/bash|' duply 23 21 mv duply "$out/bin" 24 22 wrapProgram "$out/bin/duply" --set PATH \ 25 - "${coreutils}/bin:${pythonEnv}/bin:${duplicity}/bin:${gawk}/bin:${gnupg1}/bin:${bash}/bin:${gnugrep}/bin:${txt2man}/bin:${which}/bin" 23 + "${coreutils}/bin:${python}/bin:${duplicity}/bin:${gawk}/bin:${gnupg1}/bin:${bash}/bin:${gnugrep}/bin:${txt2man}/bin:${which}/bin" 26 24 "$out/bin/duply" txt2man | gzip -c > "$out/share/man/man1/duply.1.gz" 27 25 ''; 28 26