Skip to content

Commit

Permalink
python3Packages: define python packages for all python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
minijackson committed Jul 2, 2024
1 parent 8ff1d0f commit be5ebea
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ in

mkEpicsPackage = callPackage ./build-support/mk-epics-package.nix {};

python3Packages = prev.python3Packages.overrideScope (final: prev: {
lewis = final.callPackage ./epnix/tools/lewis {};
scanf = final.callPackage ./epnix/tools/scanf {};
});
pythonPackagesExtensions =
prev.pythonPackagesExtensions
++ [
(final: prev: {
lewis = final.callPackage ./epnix/tools/lewis {};
scanf = final.callPackage ./epnix/tools/scanf {};
})
];

epnix = recurseExtensible (self: {
# EPICS base
Expand Down

0 comments on commit be5ebea

Please sign in to comment.