python-packages.nix: drop trailing whitespace
This commit is contained in:
parent
a7a125ac10
commit
89e525eb4d
@ -2742,18 +2742,18 @@ let
|
|||||||
license = "BSD-style";
|
license = "BSD-style";
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
dask = buildPythonPackage rec {
|
dask = buildPythonPackage rec {
|
||||||
name = "dask-${version}";
|
name = "dask-${version}";
|
||||||
version = "0.7.0";
|
version = "0.7.0";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/d/dask/${name}.tar.gz";
|
url = "https://pypi.python.org/packages/source/d/dask/${name}.tar.gz";
|
||||||
sha256 = "3b48646e9e66ec21a6885700d39ea90e2c2a7ad5d26773a8413b570eb1a67b3e";
|
sha256 = "3b48646e9e66ec21a6885700d39ea90e2c2a7ad5d26773a8413b570eb1a67b3e";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [numpy toolz dill];
|
propagatedBuildInputs = with self; [numpy toolz dill];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Minimal task scheduling abstraction";
|
description = "Minimal task scheduling abstraction";
|
||||||
homepage = "http://github.com/ContinuumIO/dask/";
|
homepage = "http://github.com/ContinuumIO/dask/";
|
||||||
@ -2987,18 +2987,18 @@ let
|
|||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
dill = buildPythonPackage rec {
|
dill = buildPythonPackage rec {
|
||||||
name = "dill-${version}";
|
name = "dill-${version}";
|
||||||
version = "0.2.4";
|
version = "0.2.4";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/d/dill/${name}.tgz";
|
url = "https://pypi.python.org/packages/source/d/dill/${name}.tgz";
|
||||||
sha256 = "deca57da33ad2121ab1b9c4493bf8eb2b3a72b6426d4b9a3a853a073c68b97ca";
|
sha256 = "deca57da33ad2121ab1b9c4493bf8eb2b3a72b6426d4b9a3a853a073c68b97ca";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [objgraph];
|
propagatedBuildInputs = with self; [objgraph];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Serialize all of python (almost)";
|
description = "Serialize all of python (almost)";
|
||||||
homepage = http://www.cacr.caltech.edu/~mmckerns/dill.htm;
|
homepage = http://www.cacr.caltech.edu/~mmckerns/dill.htm;
|
||||||
@ -9063,21 +9063,21 @@ let
|
|||||||
maintainers = with maintainers; [ phreedom thoughtpolice ];
|
maintainers = with maintainers; [ phreedom thoughtpolice ];
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
objgraph = buildPythonPackage rec {
|
objgraph = buildPythonPackage rec {
|
||||||
name = "objgraph-${version}";
|
name = "objgraph-${version}";
|
||||||
version = "2.0.1";
|
version = "2.0.1";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/o/objgraph/${name}.tar.gz";
|
url = "https://pypi.python.org/packages/source/o/objgraph/${name}.tar.gz";
|
||||||
sha256 = "841de52715774ec1d0e97d9b4462d6e3e10406155f9b61f54ba7db984c45442a";
|
sha256 = "841de52715774ec1d0e97d9b4462d6e3e10406155f9b61f54ba7db984c45442a";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Tests fail with PyPy.
|
# Tests fail with PyPy.
|
||||||
disabled = isPyPy;
|
disabled = isPyPy;
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [pkgs.graphviz];
|
propagatedBuildInputs = with self; [pkgs.graphviz];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Draws Python object reference graphs with graphviz";
|
description = "Draws Python object reference graphs with graphviz";
|
||||||
homepage = http://mg.pov.lt/objgraph/;
|
homepage = http://mg.pov.lt/objgraph/;
|
||||||
@ -15098,24 +15098,24 @@ let
|
|||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
xray = buildPythonPackage rec {
|
xray = buildPythonPackage rec {
|
||||||
name = "xray-${version}";
|
name = "xray-${version}";
|
||||||
version = "0.6.0";
|
version = "0.6.0";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/x/xray/${name}.tar.gz";
|
url = "https://pypi.python.org/packages/source/x/xray/${name}.tar.gz";
|
||||||
sha256 = "c8c4aadb0d39662a81c259bd609f42708ff31c90012a9dd0a1f9ee56a798196f";
|
sha256 = "c8c4aadb0d39662a81c259bd609f42708ff31c90012a9dd0a1f9ee56a798196f";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with self; [nose];
|
buildInputs = with self; [nose];
|
||||||
propagatedBuildInputs = with self; [numpy pandas];
|
propagatedBuildInputs = with self; [numpy pandas];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "N-D labeled arrays and datasets in Python";
|
description = "N-D labeled arrays and datasets in Python";
|
||||||
homepage = https://github.com/xray/xray;
|
homepage = https://github.com/xray/xray;
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
youtube-dl = callPackage ../tools/misc/youtube-dl {
|
youtube-dl = callPackage ../tools/misc/youtube-dl {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user