nixpkgs/pkgs/development/python-modules/seaborn/default.nix

37 lines
730 B
Nix
Raw Normal View History

2017-10-29 12:30:54 +00:00
{ lib
, buildPythonPackage
, pythonOlder
2017-10-29 12:30:54 +00:00
, fetchPypi
, nose
, pandas
, matplotlib
}:
buildPythonPackage rec {
pname = "seaborn";
version = "0.11.0";
disabled = pythonOlder "3.6";
2017-10-29 12:30:54 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "390f8437b14f5ce845062f2865ad51656464c306d09bb97d7764c6cba1dd607c";
2017-10-29 12:30:54 +00:00
};
checkInputs = [ nose ];
propagatedBuildInputs = [ pandas matplotlib ];
checkPhase = ''
nosetests -v
'';
# Computationally very demanding tests
doCheck = false;
meta = {
description = "Statisitical data visualization";
homepage = "http://stanford.edu/~mwaskom/software/seaborn/";
license = with lib.licenses; [ bsd3 ];
maintainers = with lib.maintainers; [ fridh ];
};
}