mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
commit
3791538f1d
3 changed files with 45 additions and 0 deletions
41
pkgs/development/python-modules/i-pi/default.nix
Normal file
41
pkgs/development/python-modules/i-pi/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ buildPythonPackage, lib, fetchFromGitHub, gfortran
|
||||
, makeWrapper, numpy, pytest, mock, pytest-mock
|
||||
} :
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "i-pi";
|
||||
version = "2.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "i-pi";
|
||||
repo = "i-pi";
|
||||
rev = "v${version}";
|
||||
sha256 = "0d0ag57aa0fsqjwya27fyj8alimjvlxzgh6hxjqy1k4ap9h3n1cy";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
gfortran
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ numpy ];
|
||||
|
||||
checkInputs = [
|
||||
pytest
|
||||
mock
|
||||
pytest-mock
|
||||
];
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram $out/bin/i-pi \
|
||||
--set IPI_ROOT $out
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A universal force engine for ab initio and force field driven (path integral) molecular dynamics";
|
||||
license = with licenses; [ gpl3Only mit ];
|
||||
homepage = "http://ipi-code.org/";
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.sheepforce ];
|
||||
};
|
||||
}
|
|
@ -5855,6 +5855,8 @@ in
|
|||
|
||||
ipget = callPackage ../applications/networking/ipget { };
|
||||
|
||||
i-pi = with python3Packages; toPythonApplication i-pi;
|
||||
|
||||
iptsd = callPackage ../applications/misc/iptsd { };
|
||||
|
||||
ipmitool = callPackage ../tools/system/ipmitool {};
|
||||
|
|
|
@ -3408,6 +3408,8 @@ in {
|
|||
|
||||
ipfshttpclient = callPackage ../development/python-modules/ipfshttpclient { };
|
||||
|
||||
i-pi = callPackage ../development/python-modules/i-pi { };
|
||||
|
||||
iptools = callPackage ../development/python-modules/iptools { };
|
||||
|
||||
ipy = callPackage ../development/python-modules/IPy { };
|
||||
|
|
Loading…
Reference in a new issue