Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 33 lines 703 B view raw
1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5 scipy, 6}: 7 8buildPythonPackage rec { 9 pname = "rmsd"; 10 version = "1.6.1"; 11 format = "setuptools"; 12 13 propagatedBuildInputs = [ scipy ]; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-nllfrUlviV2+5k94CiJQTnChrQVcchh1+uhxt84kncM="; 18 }; 19 20 pythonImportsCheck = [ "rmsd" ]; 21 22 meta = with lib; { 23 description = "Calculate root-mean-square deviation (RMSD) between two sets of cartesian coordinates"; 24 mainProgram = "calculate_rmsd"; 25 homepage = "https://github.com/charnley/rmsd"; 26 license = licenses.bsd2; 27 platforms = platforms.linux; 28 maintainers = with maintainers; [ 29 sheepforce 30 markuskowa 31 ]; 32 }; 33}