0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00
nixpkgs/pkgs/development/python-modules/bashlex/default.nix
2025-05-25 03:41:48 +02:00

37 lines
771 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
python,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "bashlex";
version = "0.18";
format = "setuptools";
src = fetchFromGitHub {
owner = "idank";
repo = "bashlex";
rev = version;
hash = "sha256-ddZN91H95RiTLXx4lpES1Dmz7nNsSVUeuFuOEpJ7LQI=";
};
# workaround https://github.com/idank/bashlex/issues/51
preBuild = ''
${python.pythonOnBuildForHost.interpreter} -c 'import bashlex'
'';
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "bashlex" ];
meta = with lib; {
description = "Python parser for bash";
license = licenses.gpl3Plus;
homepage = "https://github.com/idank/bashlex";
maintainers = with maintainers; [ multun ];
};
}