python3Packages.inequality: 1.1.1 -> 1.1.2

This commit is contained in:
R. Ryantm 2025-07-16 14:39:23 +00:00 committed by Nikolay Korotkiy
parent 879fae2fb5
commit cde1ef6d88
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5

View File

@ -16,15 +16,15 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "inequality"; pname = "inequality";
version = "1.1.1"; version = "1.1.2";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.10"; disabled = pythonOlder "3.11";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pysal"; owner = "pysal";
repo = "inequality"; repo = "inequality";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-JVim2u+VF35dvD+y14WbA2+G4wktAGpin/GMe0uGhjc="; hash = "sha256-GMl/hHwaHPozdLhV9/CPYIMY5lFYeo0X0SPDg4RT1zo=";
}; };
build-system = [ setuptools-scm ]; build-system = [ setuptools-scm ];