Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / ase / default.nix
blobed3c019146e59a3eecee973197dca52bdfca37ae
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   format = "setuptools";
17   disabled = isPy27;
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-AE32sOoEsRFMeQ+t/kXUEl6w5TElxmqTQlr4U9gqtDI=";
22   };
24   propagatedBuildInputs = [ numpy scipy matplotlib flask pillow psycopg2 ];
26   checkPhase = ''
27     $out/bin/ase test
28   '';
30   # tests just hang most likely due to something with subprocesses and cli
31   doCheck = false;
33   pythonImportsCheck = [ "ase" ];
35   meta = with lib; {
36     description = "Atomic Simulation Environment";
37     homepage = "https://wiki.fysik.dtu.dk/ase/";
38     license = licenses.lgpl21Plus;
39     maintainers = with maintainers; [ ];
40   };