summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorRobert Schütz <rschuetz17@gmail.com>2018-05-14 22:05:49 +0200
committerGitHub <noreply@github.com>2018-05-14 22:05:49 +0200
commit318970454971380d62a12c07fbf60b6e36c34aae (patch)
tree04b15f597c6cbcac106506926ffa108d1edb2683 /pkgs/top-level
parent33e07634be2fd2e496a12ef2103602d676bd4963 (diff)
parent42d11feae80f86b450ce64eef75a6f21dc807aab (diff)
downloadnixpkgs-318970454971380d62a12c07fbf60b6e36c34aae.tar
nixpkgs-318970454971380d62a12c07fbf60b6e36c34aae.tar.gz
nixpkgs-318970454971380d62a12c07fbf60b6e36c34aae.tar.bz2
nixpkgs-318970454971380d62a12c07fbf60b6e36c34aae.tar.lz
nixpkgs-318970454971380d62a12c07fbf60b6e36c34aae.tar.xz
nixpkgs-318970454971380d62a12c07fbf60b6e36c34aae.tar.zst
nixpkgs-318970454971380d62a12c07fbf60b6e36c34aae.zip
Merge pull request #36426 from couchemar/isort-4.3.4
pythonPackages.isort: 4.2.5 -> 4.3.4
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix19
1 files changed, 1 insertions, 18 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index a5a24e42865..51553ea0e56 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -6782,24 +6782,7 @@ in {
 
   iso8601 = callPackage ../development/python-modules/iso8601 { };
 
-  isort = buildPythonPackage rec {
-    name = "${pname}-${version}";
-    pname = "isort";
-    version = "4.2.5";
-    src = pkgs.fetchurl {
-      url = "mirror://pypi/i/${pname}/${name}.tar.gz";
-      sha256 = "0p7a6xaq7zxxq5vr5gizshnsbk2afm70apg97xwfdxiwyi201cjn";
-    };
-    buildInputs = with self; [ mock pytest ];
-    # No tests distributed
-    doCheck = false;
-    meta = {
-      description = "A Python utility / library to sort Python imports";
-      homepage = https://github.com/timothycrosley/isort;
-      license = licenses.mit;
-      maintainers = with maintainers; [ couchemar nand0p ];
-    };
-  };
+  isort = callPackage ../development/python-modules/isort {};
 
   jabberbot = callPackage ../development/python-modules/jabberbot {};