python313Packages.port-for: 0.7.1 -> 1.0.0

This commit is contained in:
Ben Darwin
2026-01-12 18:28:22 -05:00
committed by Michael Daniels
parent 1f4b80d597
commit d77d024489
@@ -8,19 +8,20 @@
buildPythonPackage rec {
pname = "port-for";
version = "0.7.1";
version = "1.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "kmike";
repo = "port-for";
tag = "v${version}";
hash = "sha256-/45TQ2crmTupRgL9hgZGw5IvFKywezSIHqHFbeAkMoo=";
hash = "sha256-vv2xjXyUh6g7T0zGDAlOs3K+YM18wSE8rEvgSP1ZBL4=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "port_for" ];
meta = {