mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 00:54:40 +00:00
![Artturin](/assets/img/avatar_default.png)
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
86 lines
1.9 KiB
Nix
86 lines
1.9 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
buildPythonPackage,
|
|
click,
|
|
colorama,
|
|
fetchPypi,
|
|
git,
|
|
gnugrep,
|
|
gnupg,
|
|
pbr,
|
|
pexpect,
|
|
pythonAtLeast,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
substituteAll,
|
|
tree,
|
|
xclip,
|
|
}:
|
|
|
|
# Use the `pypass` top-level attribute, if you're interested in the
|
|
# application
|
|
buildPythonPackage rec {
|
|
pname = "pypass";
|
|
version = "0.2.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-+dAQiufpULdU26or4EKDqazQbOZjGRbhI/+ddo+spNo=";
|
|
};
|
|
|
|
# Set absolute nix store paths to the executables that pypass uses
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./mark-executables.patch;
|
|
git_exec = "${git}/bin/git";
|
|
grep_exec = "${gnugrep}/bin/grep";
|
|
gpg_exec = "${gnupg}/bin/gpg2";
|
|
tree_exec = "${tree}/bin/tree";
|
|
xclip_exec = "${xclip}/bin/xclip";
|
|
})
|
|
];
|
|
|
|
# Remove enum34 requirement if Python >= 3.4
|
|
postPatch = lib.optionalString (pythonAtLeast "3.4") ''
|
|
substituteInPlace requirements.txt --replace "enum34" ""
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeBuildInputs = [ pbr ];
|
|
|
|
dependencies = [
|
|
click
|
|
colorama
|
|
pexpect
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
# Configuration so that the tests work
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
export GNUPGHOME=pypass/tests/gnupg
|
|
${git}/bin/git config --global user.email "nix-builder@nixos.org"
|
|
${git}/bin/git config --global user.name "Nix Builder"
|
|
${git}/bin/git config --global pull.ff only
|
|
make setup_gpg
|
|
'';
|
|
|
|
# Presumably this test needs the X clipboard, which we don't have
|
|
# as the test environment is non-graphical.
|
|
disabledTests = [ "test_show_clip" ];
|
|
|
|
meta = {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
description = "Password manager pass in Python";
|
|
mainProgram = "pypass";
|
|
homepage = "https://github.com/aviau/python-pass";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [ jluttine ];
|
|
};
|
|
}
|