summary refs log tree commit diff
path: root/pkgs/development/python-modules/ase
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-11-18 15:27:07 -0800
committerworldofpeace <worldofpeace@users.noreply.github.com>2018-12-18 10:11:50 -0500
commit66a6445f6671bf55807ecdd61e99371b2a34a986 (patch)
tree02474724df7d1a6d457fe20dd21f601de8dbe590 /pkgs/development/python-modules/ase
parent19d077a157caabb65133e48fbd109e94932ffab3 (diff)
downloadnixpkgs-66a6445f6671bf55807ecdd61e99371b2a34a986.tar
nixpkgs-66a6445f6671bf55807ecdd61e99371b2a34a986.tar.gz
nixpkgs-66a6445f6671bf55807ecdd61e99371b2a34a986.tar.bz2
nixpkgs-66a6445f6671bf55807ecdd61e99371b2a34a986.tar.lz
nixpkgs-66a6445f6671bf55807ecdd61e99371b2a34a986.tar.xz
nixpkgs-66a6445f6671bf55807ecdd61e99371b2a34a986.tar.zst
nixpkgs-66a6445f6671bf55807ecdd61e99371b2a34a986.zip
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
Diffstat (limited to 'pkgs/development/python-modules/ase')
-rw-r--r--pkgs/development/python-modules/ase/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/ase/default.nix b/pkgs/development/python-modules/ase/default.nix
index 1f7b9419278..3a466170c77 100644
--- a/pkgs/development/python-modules/ase/default.nix
+++ b/pkgs/development/python-modules/ase/default.nix
@@ -1,5 +1,5 @@
 { lib
-, fetchurl
+, fetchPypi
 , buildPythonPackage
 , numpy
 , scipy
@@ -10,12 +10,12 @@
 }:
 
 buildPythonPackage rec {
-  version = "3.16.2";
   pname = "ase";
+  version = "3.17.0";
 
-  src = fetchurl {
-     url = "https://gitlab.com/${pname}/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
-     sha256 = "171j3f4a261cfnqjq98px5fldxql65i3jgf60wc945xvh0mbc8ds";
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1d4gxypaahby45zcpl0rffcn2z7n55dg9lcd8sv6jjsmbbf9vr4g";
   };
 
   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
   doCheck = false;
 
-  meta = {
+  meta = with lib; {
     description = "Atomic Simulation Environment";
     homepage = https://wiki.fysik.dtu.dk/ase/;
-    license = lib.licenses.lgpl21Plus;
-    maintainers = with lib.maintainers; [ costrouc ];
+    license = licenses.lgpl21Plus;
+    maintainers = with maintainers; [ costrouc ];
   };
 }