Add recipemd

This commit is contained in:
Tim Schubert 2021-03-14 21:37:51 +01:00
parent 8d3acd5270
commit 950b23bc40
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
7 changed files with 92 additions and 0 deletions

View file

@ -10,4 +10,8 @@
dadadaScripts = super.callPackage ../pkgs/scripts.nix { };
};
sudo = import ./sudo.nix;
python3Packages = import ./python3-packages.nix;
recipemd = self: super: {
recipemd = super.python3Packages.toPythonApplication super.python3Packages.recipemd;
};
}

View file

@ -0,0 +1,6 @@
self: super:
{
python3Packages = super.python3Packages // super.recurseIntoAttrs (
super.python3Packages.callPackage ../pkgs/python-pkgs { }
);
}