tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.pysequoia: mark as broken on Darwin
Doron Behar
2 years ago
49dc08e4
32263858
+4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pysequoia
default.nix
+4
pkgs/development/python-modules/pysequoia/default.nix
···
11
11
, pcsclite
12
12
, stdenv
13
13
, darwin
14
14
+
, libiconv
14
15
}:
15
16
16
17
buildPythonPackage rec {
···
46
47
] ++ lib.optionals stdenv.isDarwin [
47
48
darwin.apple_sdk.frameworks.CoreFoundation
48
49
darwin.apple_sdk.frameworks.Security
50
50
+
libiconv
49
51
];
50
52
51
53
pythonImportsCheck = [ "pysequoia" ];
···
56
58
homepage = "https://sequoia-pgp.gitlab.io/pysequoia";
57
59
license = licenses.asl20;
58
60
maintainers = with maintainers; [ doronbehar ];
61
61
+
# Broken since the 0.1.20 update according to ofborg. The errors are not clear...
62
62
+
broken = stdenv.isDarwin;
59
63
};
60
64
}