rmsd: init at 1.5.1

This commit is contained in:
Phillip Seeber
2023-02-06 14:14:30 +01:00
committed by Florian Brandes
parent 7260745319
commit 046668b774
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 { };