Merge pull request #214936 from sheepforce/rmsd

rmsd: init at 1.5.1
This commit is contained in:
markuskowa 2023-02-06 16:06:36 +01:00 committed by GitHub
commit 6377dcb573
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ buildPythonPackage
, lib
, fetchPypi
, scipy
}:
buildPythonPackage rec {
pname = "rmsd";
version = "1.5.1";
propagatedBuildInputs = [ scipy ];
src = fetchPypi {
inherit pname version;
hash = "sha256-wDQoIUMqrBDpgImHeHWizYu/YkFjlxB22TaGpA8Q0Sc=";
};
pythonImportsCheck = [ "rmsd" ];
meta = with lib; {
description = "Calculate root-mean-square deviation (RMSD) between two sets of cartesian coordinates";
homepage = "https://github.com/charnley/rmsd";
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ sheepforce markuskowa ];
};
}

View File

@ -10067,6 +10067,8 @@ self: super: with self; {
rmrl = callPackage ../development/python-modules/rmrl { };
rmsd = callPackage ../development/python-modules/rmsd { };
rnc2rng = callPackage ../development/python-modules/rnc2rng { };
rnginline = callPackage ../development/python-modules/rnginline { };