Merge pull request #129045 from fabaff/bump-bashlex

python3Packages.bashlex: 0.14 -> 0.15
This commit is contained in:
Robert Scott 2021-07-03 15:40:42 +01:00 committed by GitHub
commit 0a2b50395c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,13 +8,13 @@
buildPythonPackage rec {
pname = "bashlex";
version = "0.14";
version = "0.15";
src = fetchFromGitHub {
owner = "idank";
repo = pname;
rev = version;
sha256 = "070spmbf53y18miky5chgky4x5h8kp9czkp7dm173klv9pi2cn0k";
sha256 = "sha256-kKVorAIKlyC9vUzLOlaZ/JrG1kBBRIvLwBmHNj9nx84=";
};
checkInputs = [ nose ];
@ -29,9 +29,11 @@ buildPythonPackage rec {
${python.interpreter} -m nose --with-doctest
'';
pythonImportsCheck = [ "bashlex" ];
meta = with lib; {
description = "Python parser for bash";
license = licenses.gpl3;
license = licenses.gpl3Plus;
homepage = "https://github.com/idank/bashlex";
maintainers = with maintainers; [ multun ];
};