sympy: minor updates

- Specify meta.license
- Download from pypi rather than github
This commit is contained in:
Joachim Fasting 2014-11-07 16:44:14 +01:00
parent 9cf9675a60
commit 432ffd257e
1 changed files with 2 additions and 2 deletions

View File

@ -8494,7 +8494,7 @@ let
disabled = isPy34; # some tests fail
src = pkgs.fetchurl {
url = "https://github.com/sympy/sympy/releases/download/${name}/${name}.tar.gz";
url = "https://pypi.python.org/packages/source/s/sympy/${name}.tar.gz";
sha256 = "0h1b9mx0snyyybj1x1ga69qssgjzkkgx2rw6nddjhyz1fknf8ywh";
};
@ -8506,7 +8506,7 @@ let
meta = with stdenv.lib; {
description = "A Python library for symbolic mathematics";
homepage = http://www.sympy.org/;
license = "free";
license = licenses.bsd3;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};