depot/third_party/nixpkgs/pkgs/development/python-modules/rmsd/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

33 lines
703 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";
mainProgram = "calculate_rmsd";
homepage = "https://github.com/charnley/rmsd";
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [
sheepforce
markuskowa
];
};
}