Skip to content

Commit

Permalink
python3Packages.inequality: 1.1.0 -> 1.1.1
Browse files Browse the repository at this point in the history
Co-authored-by: Robert Schütz <[email protected]>
  • Loading branch information
imincik and dotlambda committed Feb 11, 2025
1 parent cfe66f8 commit 5000025
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions pkgs/development/python-modules/inequality/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,41 @@
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";

src = fetchFromGitHub {
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" ];

Expand Down

0 comments on commit 5000025

Please sign in to comment.