2018-08-10 21:41:46 +01:00
|
|
|
{ lib
|
2018-11-18 23:27:07 +00:00
|
|
|
, fetchPypi
|
2018-08-10 21:41:46 +01:00
|
|
|
, buildPythonPackage
|
2019-08-05 09:42:43 +01:00
|
|
|
, isPy27
|
2018-08-10 21:41:46 +01:00
|
|
|
, numpy
|
|
|
|
, scipy
|
|
|
|
, matplotlib
|
|
|
|
, flask
|
|
|
|
, pillow
|
|
|
|
, psycopg2
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "ase";
|
2021-12-02 15:01:02 +00:00
|
|
|
version = "3.22.1";
|
2019-08-05 09:42:43 +01:00
|
|
|
disabled = isPy27;
|
2018-08-10 21:41:46 +01:00
|
|
|
|
2018-11-18 23:27:07 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-12-02 15:01:02 +00:00
|
|
|
sha256 = "sha256-AE32sOoEsRFMeQ+t/kXUEl6w5TElxmqTQlr4U9gqtDI=";
|
2018-08-10 21:41:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ numpy scipy matplotlib flask pillow psycopg2 ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
$out/bin/ase test
|
|
|
|
'';
|
|
|
|
|
|
|
|
# tests just hang most likely due to something with subprocesses and cli
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-07-03 11:04:28 +01:00
|
|
|
pythonImportsCheck = [ "ase" ];
|
|
|
|
|
2018-11-18 23:27:07 +00:00
|
|
|
meta = with lib; {
|
2018-08-10 21:41:46 +01:00
|
|
|
description = "Atomic Simulation Environment";
|
2020-04-06 14:04:55 +01:00
|
|
|
homepage = "https://wiki.fysik.dtu.dk/ase/";
|
2018-11-18 23:27:07 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
maintainers = with maintainers; [ costrouc ];
|
2018-08-10 21:41:46 +01:00
|
|
|
};
|
|
|
|
}
|