Merge pull request #66038 from jonringer/bump-ase

python3Packages.ase: 3.17.0 -> 3.18.0
This commit is contained in:
Marek Mahut
2019-08-08 16:24:23 +02:00
committed by GitHub
3 changed files with 44 additions and 3 deletions

View File

@@ -0,0 +1,36 @@
{ lib
, fetchPypi
, buildPythonPackage
, numpy
, scipy
, matplotlib
, flask
, pillow
, psycopg2
}:
buildPythonPackage rec {
pname = "ase";
version = "3.17.0";
src = fetchPypi {
inherit pname version;
sha256 = "1d4gxypaahby45zcpl0rffcn2z7n55dg9lcd8sv6jjsmbbf9vr4g";
};
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;
meta = with lib; {
description = "Atomic Simulation Environment";
homepage = https://wiki.fysik.dtu.dk/ase/;
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ costrouc ];
};
}

View File

@@ -1,6 +1,7 @@
{ lib
, fetchPypi
, buildPythonPackage
, isPy27
, numpy
, scipy
, matplotlib
@@ -11,11 +12,12 @@
buildPythonPackage rec {
pname = "ase";
version = "3.17.0";
version = "3.18.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "1d4gxypaahby45zcpl0rffcn2z7n55dg9lcd8sv6jjsmbbf9vr4g";
sha256 = "1ycp1yksysiiz902gn762030sfmirxm950pwpw2rcrpjvq95zm1r";
};
propagatedBuildInputs = [ numpy scipy matplotlib flask pillow psycopg2 ];