depot/third_party/nixpkgs/pkgs/development/python-modules/rmsd/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

28 lines
645 B
Nix

{ buildPythonPackage
, lib
, fetchPypi
, scipy
}:
buildPythonPackage rec {
pname = "rmsd";
version = "1.5.1";
format = "setuptools";
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 ];
};
}