eccodes: 2.9.2 -> 2.10.0

Python3 is now officially supported as "beta", see relase notes at:
https://confluence.ecmwf.int/display/ECC/ecCodes+version+2.10.0+released
This commit is contained in:
Josef Kemetmüller 2018-12-16 16:03:37 +01:00 committed by Franz Pletz
parent 44482c54ff
commit 7c42da3a1e
2 changed files with 6 additions and 7 deletions

View File

@ -6,11 +6,11 @@
with stdenv.lib;
stdenv.mkDerivation rec {
name = "eccodes-${version}";
version = "2.9.2";
version = "2.10.0";
src = fetchurl {
url = "https://confluence.ecmwf.int/download/attachments/45757960/eccodes-${version}-Source.tar.gz";
sha256 = "18gjzhz7bkibc34a0djq1r4b2y3hpn7ym0zs0nj07yq58v4pdx08";
sha256 = "1n429najxlq6y76wyx1mbw41b0l4prdhfmy4id9ni8zwm96cp8xy";
};
postPatch = ''

View File

@ -1613,11 +1613,10 @@ in {
easy-thumbnails = callPackage ../development/python-modules/easy-thumbnails { };
eccodes = disabledIf (!isPy27)
(toPythonModule (pkgs.eccodes.override {
enablePython = true;
pythonPackages = self;
}));
eccodes = toPythonModule (pkgs.eccodes.override {
enablePython = true;
pythonPackages = self;
});
EditorConfig = callPackage ../development/python-modules/editorconfig { };