Merge pull request #236857 from doronbehar/pkg/pylion

python3Packages.pylion: init at 0.5.2
This commit is contained in:
Doron Behar
2023-06-14 12:56:56 +03:00
committed by GitHub
2 changed files with 57 additions and 0 deletions
@@ -0,0 +1,55 @@
{ lib
, buildPythonPackage
, fetchFromBitbucket
, h5py
, termcolor
, pexpect
, jinja2
, sphinxHook
, sphinx-rtd-theme
}:
buildPythonPackage {
pname = "pylion";
version = "0.5.2";
format = "setuptools";
src = fetchFromBitbucket {
owner = "dtrypogeorgos";
repo = "pylion";
# Version is set in setup.cfg, but not in a git tag / bitbucket release
rev = "8945a7b6f1912ae6b9c705f8a2bd521101f5ba59";
hash = "sha256-4AdJkoQ1hAssDUpgmARGmN+ihQqRPPOncWJ5ErQyWII=";
};
# Docs are not available online, besides the article:
# http://dx.doi.org/10.1016/j.cpc.2020.107187
nativeBuildInputs = [
sphinxHook
sphinx-rtd-theme
];
propagatedBuildInputs = [
h5py
termcolor
pexpect
jinja2
];
pythonImportsCheck = [ "pylion" ];
# Tests fail from some reason - some files seem to be missing from the repo.
doCheck = false;
postInstall = ''
mkdir -p $out/share/doc/$name
cp -r examples $out/share/doc/$name/examples
'';
meta = with lib; {
description = "A LAMMPS wrapper for molecular dynamics simulations of trapped ions";
homepage = "https://bitbucket.org/dtrypogeorgos/pylion";
license = licenses.mit;
maintainers = with maintainers; [ doronbehar ];
};
}
+2
View File
@@ -8823,6 +8823,8 @@ self: super: with self; {
pylint-venv = callPackage ../development/python-modules/pylint-venv { };
pylion = callPackage ../development/python-modules/pylion { };
pylitterbot = callPackage ../development/python-modules/pylitterbot { };
py-libzfs = callPackage ../development/python-modules/py-libzfs { };