Merge pull request #43436 from timokau/sage-new-flask

sage: replace flask-babel version pin by patch
This commit is contained in:
Frederik Rietdijk 2018-07-13 18:52:26 +02:00 committed by GitHub
commit d0446a5c76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 10 deletions

View file

@ -14,16 +14,6 @@ let
cvxopt = super.cvxopt.override { inherit glpk; };
# https://github.com/sagemath/sagenb/issues/437
flask-babel = super.flask-babel.overridePythonAttrs (attrs: rec {
version = "0.9";
src = attrs.src.override {
inherit version;
sha256 = "0k7vk4k54y55ma0nx2k5s0phfqbriwslhy5shh3b0d046q7ibzaa";
};
doCheck = false;
});
# python packages that appear unmaintained and were not accepted into the nixpkgs
# tree because of that. These packages are only dependencies of the more-or-less
# deprecated sagenb. However sagenb is still a default dependency and the doctests

View file

@ -36,6 +36,14 @@ buildPythonPackage rec {
# tests depend on sage
doCheck = false;
patches = [
# work with latest flask-babel
(fetchpatch {
url = "https://github.com/sagemath/sagenb/commit/ba065eca63dd34a383e4c7ba7561430a90fcd087.patch";
sha256 = "1lamzsrgymdd618imrasjp6ivhw2aynh83gkybsd7pm1rzjcq4x8";
})
];
meta = with stdenv.lib; {
description = "Sage Notebook";
license = licenses.gpl3Plus;