Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 33 lines 682 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5, pandas 6, matplotlib 7}: 8 9buildPythonPackage rec { 10 pname = "seaborn"; 11 version = "0.10.0"; 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "59fe414e138d7d5ea08b0feb01b86caf4682e36fa748e3987730523a89aecbb9"; 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}