1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5, pandas 6, matplotlib 7}: 8 9buildPythonPackage rec { 10 pname = "seaborn"; 11 version = "0.9.0"; 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "76c83f794ca320fb6b23a7c6192d5e185a5fcf4758966a0c0a54baee46d41e2f"; 15 }; 16 17 checkInputs = [ nose ]; 18 propagatedBuildInputs = [ pandas matplotlib ]; 19 20 checkPhase = '' 21 nosetests -v 22 ''; 23 24 # Computationally very demanding tests 25 doCheck = false; 26 27 meta = { 28 description = "Statisitical data visualization"; 29 homepage = "http://stanford.edu/~mwaskom/software/seaborn/"; 30 license = with lib.licenses; [ bsd3 ]; 31 maintainers = with lib.maintainers; [ fridh ]; 32 }; 33}