Merge branch 'master' into staging

>10k of rebuilds from master
This commit is contained in:
Vladimír Čunát
2017-06-08 20:55:07 +02:00
23 changed files with 2767 additions and 1486 deletions

View File

@@ -12,13 +12,13 @@
}:
buildPythonPackage rec {
name = "Theano-0.8.2";
name = "Theano-0.9.0";
disabled = isPyPy || pythonOlder "2.6" || (isPy3k && pythonOlder "3.3");
src = fetchurl {
url = "mirror://pypi/T/Theano/${name}.tar.gz";
sha256 = "7463c8f7ed1a787bf881f36d38a38607150186697e7ce7e78bfb94b7c6af8930";
sha256 = "05xwg00da8smkvkh6ywbywqzj8dw7x840jr74wqhdy9icmqncpbl";
};
#preCheck = ''

View File

@@ -0,0 +1,32 @@
{ lib
, fetchPypi
, buildPythonPackage
, numpy
, cython
, h5py
, scipy }:
buildPythonPackage rec {
pname = "astropy";
version = "1.3.3";
name = "${pname}-${version}";
doCheck = false; #Some tests are failing. More importantly setup.py hangs on completion. Needs fixing with a proper shellhook.
src = fetchPypi {
inherit pname version;
sha256 = "ed093e033fcbee5a3ec122420c3376f8a80f74663214560727d3defe82170a99";
};
propagatedBuildInputs = [ numpy cython h5py scipy ];
meta = {
description = "Astronomy/Astrophysics library for Python";
homepage = "http://www.astropy.org";
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ kentjames ];
};
}