2023-02-09 11:40:11 +00:00
|
|
|
{ buildPythonPackage
|
|
|
|
, lib
|
|
|
|
, fetchPypi
|
|
|
|
, scipy
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rmsd";
|
|
|
|
version = "1.5.1";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2023-02-09 11:40:11 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|