python36Packages.ase: 3.16.2 -> 3.17.0

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-ase/versions
This commit is contained in:
R. RyanTM 2018-11-18 15:27:07 -08:00 committed by worldofpeace
parent 19d077a157
commit 66a6445f66

View File

@ -1,5 +1,5 @@
{ lib { lib
, fetchurl , fetchPypi
, buildPythonPackage , buildPythonPackage
, numpy , numpy
, scipy , scipy
@ -10,12 +10,12 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "3.16.2";
pname = "ase"; pname = "ase";
version = "3.17.0";
src = fetchurl { src = fetchPypi {
url = "https://gitlab.com/${pname}/${pname}/-/archive/${version}/${pname}-${version}.tar.gz"; inherit pname version;
sha256 = "171j3f4a261cfnqjq98px5fldxql65i3jgf60wc945xvh0mbc8ds"; sha256 = "1d4gxypaahby45zcpl0rffcn2z7n55dg9lcd8sv6jjsmbbf9vr4g";
}; };
propagatedBuildInputs = [ numpy scipy matplotlib flask pillow psycopg2 ]; propagatedBuildInputs = [ numpy scipy matplotlib flask pillow psycopg2 ];
@ -27,10 +27,10 @@ buildPythonPackage rec {
# tests just hang most likely due to something with subprocesses and cli # tests just hang most likely due to something with subprocesses and cli
doCheck = false; doCheck = false;
meta = { meta = with lib; {
description = "Atomic Simulation Environment"; description = "Atomic Simulation Environment";
homepage = https://wiki.fysik.dtu.dk/ase/; homepage = https://wiki.fysik.dtu.dk/ase/;
license = lib.licenses.lgpl21Plus; license = licenses.lgpl21Plus;
maintainers = with lib.maintainers; [ costrouc ]; maintainers = with maintainers; [ costrouc ];
}; };
} }