rmsd: init at 1.5.1
This commit is contained in:
27
pkgs/development/python-modules/rmsd/default.nix
Normal file
27
pkgs/development/python-modules/rmsd/default.nix
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, lib
|
||||||
|
, fetchPypi
|
||||||
|
, scipy
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "rmsd";
|
||||||
|
version = "1.5.1";
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -10067,6 +10067,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
rmrl = callPackage ../development/python-modules/rmrl { };
|
rmrl = callPackage ../development/python-modules/rmrl { };
|
||||||
|
|
||||||
|
rmsd = callPackage ../development/python-modules/rmsd { };
|
||||||
|
|
||||||
rnc2rng = callPackage ../development/python-modules/rnc2rng { };
|
rnc2rng = callPackage ../development/python-modules/rnc2rng { };
|
||||||
|
|
||||||
rnginline = callPackage ../development/python-modules/rnginline { };
|
rnginline = callPackage ../development/python-modules/rnginline { };
|
||||||
|
|||||||
Reference in New Issue
Block a user