Skip to content

Commit

Permalink
python3Packages.mapclassify: 2.6.1 -> 2.8.0 (NixOS#343339)
Browse files Browse the repository at this point in the history
  • Loading branch information
sikmir authored Sep 20, 2024
2 parents 1332563 + e235e39 commit 10489d2
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions pkgs/development/python-modules/mapclassify/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

geopandas,
libpysal,
matplotlib,
networkx,
numpy,
pandas,
Expand All @@ -17,15 +18,15 @@

buildPythonPackage rec {
pname = "mapclassify";
version = "2.6.1";
version = "2.8.0";
pyproject = true;
disabled = pythonOlder "3.9";

src = fetchFromGitHub {
owner = "pysal";
repo = "mapclassify";
rev = "v${version}";
hash = "sha256-lb2Ui6zdx6MQBtBrL/Xj9k7cm6De8aLEuBLZDhPPDnE=";
rev = "refs/tags/v${version}";
hash = "sha256-JrFKWkMUu8rjJJb1KK8+R9ANkLhTPf1EmWpzhfE7MAE=";
};

build-system = [ setuptools-scm ];
Expand All @@ -42,10 +43,14 @@ buildPythonPackage rec {
pytestCheckHook
geopandas
libpysal
matplotlib
];

# requires network access
disabledTestPaths = [ "mapclassify/tests/test_greedy.py" ];
disabledTestPaths = [
"mapclassify/tests/test_greedy.py"
"mapclassify/tests/test_rgba.py"
];

pythonImportsCheck = [ "mapclassify" ];

Expand Down

0 comments on commit 10489d2

Please sign in to comment.