1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-16 15:58:36 +00:00

pythonPackages.seaborn: disable <py3.6, abandoned upstream

This commit is contained in:
Jonathan Ringer 2020-02-12 22:36:24 -08:00 committed by Jon
parent 5f67b6ad18
commit a43ec07165

View file

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, nose
, pandas
@ -9,6 +10,8 @@
buildPythonPackage rec {
pname = "seaborn";
version = "0.10.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "59fe414e138d7d5ea08b0feb01b86caf4682e36fa748e3987730523a89aecbb9";
@ -30,4 +33,4 @@ buildPythonPackage rec {
license = with lib.licenses; [ bsd3 ];
maintainers = with lib.maintainers; [ fridh ];
};
}
}