mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Add seaborn python package
This commit is contained in:
parent
1e364f993b
commit
8d44a74cfe
1 changed files with 16 additions and 0 deletions
|
@ -12352,6 +12352,22 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
seaborn= buildPythonPackage rec {
|
||||
name = "seaborn-0.6.0";
|
||||
src = pkgs.fetchurl {
|
||||
url = "http://pypi.python.org/packages/source/s/seaborn/${name}.tar.gz";
|
||||
md5 = "bc518f1f45dadb9deb2bb57ca3af3cad";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ pandas matplotlib ];
|
||||
|
||||
meta = {
|
||||
description = "statisitical data visualization";
|
||||
homepage = "http://stanford.edu/~mwaskom/software/seaborn/";
|
||||
license = "BSD";
|
||||
};
|
||||
};
|
||||
|
||||
selenium = buildPythonPackage rec {
|
||||
name = "selenium-2.44.0";
|
||||
src = pkgs.fetchurl {
|
||||
|
|
Loading…
Reference in a new issue