ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / ase / default.nix
blobc3ec514844c22f3ffc9dae9ffa13a6eaf277a744
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , isPy27
5 , numpy
6 , scipy
7 , matplotlib
8 , flask
9 , pillow
10 , psycopg2
13 buildPythonPackage rec {
14   pname = "ase";
15   version = "3.22.1";
16   disabled = isPy27;
18   src = fetchPypi {
19     inherit pname version;
20     sha256 = "sha256-AE32sOoEsRFMeQ+t/kXUEl6w5TElxmqTQlr4U9gqtDI=";
21   };
23   propagatedBuildInputs = [ numpy scipy matplotlib flask pillow psycopg2 ];
25   checkPhase = ''
26     $out/bin/ase test
27   '';
29   # tests just hang most likely due to something with subprocesses and cli
30   doCheck = false;
32   pythonImportsCheck = [ "ase" ];
34   meta = with lib; {
35     description = "Atomic Simulation Environment";
36     homepage = "https://wiki.fysik.dtu.dk/ase/";
37     license = licenses.lgpl21Plus;
38     maintainers = with maintainers; [ costrouc ];
39   };