lol

pythonPackages.isort: 4.2.2 -> 4.2.5

Tested on Linux
- python 2.7
- python 3.5

authored by

Fernando J Pando and committed by
Frederik Rietdijk
bea6b4b3 47a2a150

+8 -7
+8 -7
pkgs/top-level/python-packages.nix
··· 12196 12196 }; 12197 12197 12198 12198 isort = buildPythonPackage rec { 12199 - name = "isort-4.2.2"; 12200 - 12199 + name = "${pname}-${version}"; 12200 + pname = "isort"; 12201 + version = "4.2.5"; 12201 12202 src = pkgs.fetchurl { 12202 - url = "mirror://pypi/i/isort/${name}.tar.gz"; 12203 - sha256 = "0xqxnkli3j69mj1m0i1r9n68bfkdxfcgxi602lqgy491m21q1rpj"; 12203 + url = "mirror://pypi/i/${pname}/${name}.tar.gz"; 12204 + sha256 = "0p7a6xaq7zxxq5vr5gizshnsbk2afm70apg97xwfdxiwyi201cjn"; 12204 12205 }; 12205 - 12206 12206 buildInputs = with self; [ mock pytest ]; 12207 - 12207 + # No tests distributed 12208 + doCheck = false; 12208 12209 meta = { 12209 12210 description = "A Python utility / library to sort Python imports"; 12210 12211 homepage = https://github.com/timothycrosley/isort; 12211 12212 license = licenses.mit; 12212 - maintainers = with maintainers; [ couchemar ]; 12213 + maintainers = with maintainers; [ couchemar nand0p ]; 12213 12214 }; 12214 12215 }; 12215 12216