python3Packages.seaborn: 0.11.2 -> 0.12.0

This commit is contained in:
Martin Weinelt
2022-09-19 10:37:43 +02:00
parent 358a6ead53
commit ff383555f5
@@ -2,6 +2,7 @@
, stdenv
, buildPythonPackage
, fetchPypi
, flit-core
, matplotlib
, pytestCheckHook
, numpy
@@ -12,16 +13,20 @@
buildPythonPackage rec {
pname = "seaborn";
version = "0.11.2";
format = "setuptools";
version = "0.12.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "cf45e9286d40826864be0e3c066f98536982baf701a7caa386511792d61ff4f6";
sha256 = "sha256-iT8XKS2LrKYWwVeN21jrJcctYi9U/F7jKcggfcm1eyM=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
matplotlib
numpy