We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ad294b4 + 03010c0 commit 9e9db15Copy full SHA for 9e9db15
flake.nix
@@ -24,7 +24,7 @@
24
};
25
packages = {
26
default = self'.packages.py-aligator;
27
- aligator = pkgs.aligator.overrideAttrs {
+ aligator = pkgs.aligator.overrideAttrs (super: {
28
src = lib.fileset.toSource {
29
root = ./.;
30
fileset = lib.fileset.unions [
@@ -40,7 +40,10 @@
40
./tests
41
];
42
43
- };
+ checkInputs = super.checkInputs ++ [
44
+ pkgs.catch2_3
45
+ ];
46
+ });
47
py-aligator = pkgs.python3Packages.toPythonModule (self'.packages.aligator.overrideAttrs (super:{
48
cmakeFlags = super.cmakeFlags ++ [
49
(lib.cmakeBool "BUILD_PYTHON_INTERFACE" true)
0 commit comments