python3Packages.phply: use python conventions
This commit is contained in:
parent
dbff342f64
commit
854164d514
@ -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 ];
|
||||
|
Loading…
Reference in New Issue
Block a user