mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-12 16:03:32 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
29 lines
645 B
Nix
29 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 ];
|
|
};
|
|
}
|