python2Packages.ase: freeze at 3.17
This commit is contained in:
parent
89721e4954
commit
016cc8e790
2 changed files with 40 additions and 1 deletions
36
pkgs/development/python-modules/ase/3.17.nix
Normal file
36
pkgs/development/python-modules/ase/3.17.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -183,7 +183,10 @@ in {
|
||||||
|
|
||||||
asciitree = callPackage ../development/python-modules/asciitree { };
|
asciitree = callPackage ../development/python-modules/asciitree { };
|
||||||
|
|
||||||
ase = callPackage ../development/python-modules/ase { };
|
ase = if isPy27 then
|
||||||
|
callPackage ../development/python-modules/ase/3.17.nix { }
|
||||||
|
else
|
||||||
|
callPackage ../development/python-modules/ase { };
|
||||||
|
|
||||||
asn1crypto = callPackage ../development/python-modules/asn1crypto { };
|
asn1crypto = callPackage ../development/python-modules/asn1crypto { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue