python3Packages.shellescape: migrate to pyproject

This commit is contained in:
Harinn
2026-07-02 14:02:16 +07:00
parent 4c3e8e9d4f
commit adc2746edc
@@ -2,13 +2,14 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "shellescape";
version = "3.8.1";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "chrissimpkins";
@@ -17,6 +18,8 @@ buildPythonPackage rec {
hash = "sha256-HAe3Qf3lLeVWw/tVkW0J+CfoxSoOnCcWDR2nEWZn7HM=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "shellescape" ];