Unverified Commit dba9074f authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by GitHub
Browse files

python3Packages.inequality: 1.1.0 -> 1.1.1 (#380833)

parents 46c6fe37 5000025e
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
@@ -6,14 +6,17 @@
  pythonOlder,

  libpysal,
  mapclassify,
  matplotlib,
  numpy,
  scipy,
  seaborn,
  setuptools-scm,
}:

buildPythonPackage rec {
  pname = "inequality";
  version = "1.1.0";
  version = "1.1.1";
  pyproject = true;
  disabled = pythonOlder "3.10";

@@ -21,18 +24,23 @@ buildPythonPackage rec {
    owner = "pysal";
    repo = "inequality";
    tag = "v${version}";
    hash = "sha256-tKMpmsP19K4dyBCj84FBoGkEvrmQuSi77sY3uQYvz5s=";
    hash = "sha256-JVim2u+VF35dvD+y14WbA2+G4wktAGpin/GMe0uGhjc=";
  };

  build-system = [ setuptools-scm ];

  propagatedBuildInputs = [
  dependencies = [
    libpysal
    matplotlib
    numpy
    scipy
  ];

  nativeCheckInputs = [ pytestCheckHook ];
  nativeCheckInputs = [
    mapclassify
    pytestCheckHook
    seaborn
  ];

  pythonImportsCheck = [ "inequality" ];