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
, pcsclite
12
, stdenv
13
, darwin
0
14
}:
15
16
buildPythonPackage rec {
···
46
] ++ lib.optionals stdenv.isDarwin [
47
darwin.apple_sdk.frameworks.CoreFoundation
48
darwin.apple_sdk.frameworks.Security
0
49
];
50
51
pythonImportsCheck = [ "pysequoia" ];
···
56
homepage = "https://sequoia-pgp.gitlab.io/pysequoia";
57
license = licenses.asl20;
58
maintainers = with maintainers; [ doronbehar ];
0
0
59
};
60
}
···
11
, pcsclite
12
, stdenv
13
, darwin
14
+
, libiconv
15
}:
16
17
buildPythonPackage rec {
···
47
] ++ lib.optionals stdenv.isDarwin [
48
darwin.apple_sdk.frameworks.CoreFoundation
49
darwin.apple_sdk.frameworks.Security
50
+
libiconv
51
];
52
53
pythonImportsCheck = [ "pysequoia" ];
···
58
homepage = "https://sequoia-pgp.gitlab.io/pysequoia";
59
license = licenses.asl20;
60
maintainers = with maintainers; [ doronbehar ];
61
+
# Broken since the 0.1.20 update according to ofborg. The errors are not clear...
62
+
broken = stdenv.isDarwin;
63
};
64
}