python3Packages.phply: use python conventions

This commit is contained in:
Kerstin Humm 2024-08-29 13:16:26 +02:00 committed by Valentin Gagarin
parent dbff342f64
commit 854164d514

View File

@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
ply,
pytestCheckHook,
}:
@ -10,12 +11,15 @@ buildPythonPackage rec {
pname = "phply";
version = "1.2.6";
pyproject = true;
src = fetchPypi {
pname = "phply";
inherit version;
sha256 = "sha256-Cyd3TShfUHo0RYBaBfj7KZj1bXCScPeLiSCLZbDYSRc=";
inherit pname version;
hash = "sha256-Cyd3TShfUHo0RYBaBfj7KZj1bXCScPeLiSCLZbDYSRc=";
};
build-system = [ setuptools ];
dependencies = [ ply ];
nativeCheckInputs = [ pytestCheckHook ];