Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 90d5dd3cdac2
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9ed3ad1ebafe
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 22, 2017

  1. eccodes: Provide python bindings

    Josef Kemetmueller committed May 22, 2017
    Copy the full SHA
    abdaf5a View commit details

Commits on Jun 7, 2017

  1. Merge pull request #25992 from knedlsepp/provide-eccodes-python-bindings

    eccodes: Provide python bindings
    FRidh authored Jun 7, 2017
    Copy the full SHA
    9ed3ad1 View commit details
Showing with 8 additions and 0 deletions.
  1. +8 −0 pkgs/top-level/python-packages.nix
8 changes: 8 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -6246,6 +6246,14 @@ in {
};
};

eccodes = if (isPy27) then
(pkgs.eccodes.overrideAttrs (oldattrs: {
name = "${python.libPrefix}-" + oldattrs.name;
})).override {
enablePython = true;
pythonPackages = self;
} else throw "eccodes not supported for interpreter ${python.executable}";

EditorConfig = buildPythonPackage rec {
name = "EditorConfig-${version}";
version = "0.12.0";