1{ buildPythonPackage
2, lib
3, fetchPypi
4, scipy
5}:
6
7buildPythonPackage rec {
8 pname = "rmsd";
9 version = "1.5.1";
10
11 propagatedBuildInputs = [ scipy ];
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-wDQoIUMqrBDpgImHeHWizYu/YkFjlxB22TaGpA8Q0Sc=";
16 };
17
18 pythonImportsCheck = [ "rmsd" ];
19
20 meta = with lib; {
21 description = "Calculate root-mean-square deviation (RMSD) between two sets of cartesian coordinates";
22 homepage = "https://github.com/charnley/rmsd";
23 license = licenses.bsd2;
24 platforms = platforms.linux;
25 maintainers = with maintainers; [ sheepforce markuskowa ];
26 };
27}