python3Packages.pyexcel-io: 0.6.6 -> 0.6.7

This commit is contained in:
Martin Weinelt
2025-01-27 10:56:39 +01:00
parent c95dcfcd50
commit 5a2e8df875
@@ -1,24 +1,26 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
setuptools,
lml,
isPy3k,
}:
buildPythonPackage rec {
pname = "pyexcel-io";
version = "0.6.6";
format = "setuptools";
version = "0.6.7";
pyproject = true;
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
hash = "sha256-9ghL8a+l+/TGHPffRDcPpROCGvGIsC4+GbXvtm2Klp8=";
src = fetchFromGitHub {
owner = "pyexcel";
repo = "pyexcel-io";
tag = "v${version}";
hash = "sha256-fRayB+XKWpPson64lbJ0KvCK75+H2H2Kd18Jc7ocJPU=";
};
propagatedBuildInputs = [ lml ];
build-system = [ setuptools ];
dependencies = [ lml ];
# Tests depend on stuff that depends on this.
doCheck = false;