pythonPackages.bashlex: init at 0.14

This commit is contained in:
Victor multun Collod 2019-12-29 19:34:42 +01:00 committed by Jon
parent 76bd004a4b
commit 0c76aa6414
2 changed files with 40 additions and 0 deletions

@ -0,0 +1,38 @@
{ enum-compat
, lib
, buildPythonPackage
, fetchFromGitHub
, nose
, python
}:
buildPythonPackage rec {
pname = "bashlex";
version = "0.14";
src = fetchFromGitHub {
owner = "idank";
repo = pname;
rev = version;
sha256 = "070spmbf53y18miky5chgky4x5h8kp9czkp7dm173klv9pi2cn0k";
};
checkInputs = [ nose ];
propagatedBuildInputs = [ enum-compat ];
# workaround https://github.com/idank/bashlex/issues/51
preBuild = ''
${python.interpreter} -c 'import bashlex'
'';
checkPhase = ''
${python.interpreter} -m nose --with-doctest
'';
meta = with lib; {
description = "Python parser for bash";
license = licenses.gpl3;
homepage = https://github.com/idank/bashlex;
maintainers = with maintainers; [ multun ];
};
}

@ -472,6 +472,8 @@ in {
bash_kernel = callPackage ../development/python-modules/bash_kernel { };
bashlex = callPackage ../development/python-modules/bashlex { };
bayespy = callPackage ../development/python-modules/bayespy { };
beanstalkc = callPackage ../development/python-modules/beanstalkc { };