Merge pull request #3189 from aherrmann/pr_licenses

License meta-data for numexpr, tables, and szip
This commit is contained in:
Peter Simons 2014-07-07 11:33:47 +02:00
commit 1ecae5c2c1
3 changed files with 15 additions and 5 deletions

View File

@ -1,9 +1,17 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "szip-2.1";
src = fetchurl {
url = ftp://ftp.hdfgroup.org/lib-external/szip/2.1/src/szip-2.1.tar.gz;
sha256 = "1vym7r4by02m0yqj10023xyps5b21ryymnxb4nb2gs32arfxj5m8";
};
name = "szip-2.1";
src = fetchurl {
url = ftp://ftp.hdfgroup.org/lib-external/szip/2.1/src/szip-2.1.tar.gz;
sha256 = "1vym7r4by02m0yqj10023xyps5b21ryymnxb4nb2gs32arfxj5m8";
};
meta = {
description = "
Szip is a compression library that can be used with the hdf5 library.
";
homepage = http://www.hdfgroup.org/doc_resource/SZIP/;
license = stdenv.lib.licenses.unfree;
};
}

View File

@ -52,5 +52,6 @@ buildPythonPackage rec {
meta = {
description = "Hierarchical datasets for Python";
homepage = "http://www.pytables.org/";
license = stdenv.lib.licenses.bsd2;
};
}

View File

@ -4732,6 +4732,7 @@ rec {
meta = {
description = "Fast numerical array expression evaluator for NumPy";
homepage = "https://github.com/pydata/numexpr";
license = licenses.mit;
};
};