about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorAndrey Pavlov <couchemar@yandex.ru>2018-03-07 17:19:37 +0300
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-29 20:35:26 +0200
commit42d11feae80f86b450ce64eef75a6f21dc807aab (patch)
tree23e35ad4d4f58ac950b850ec1f1a616a8509b8da /pkgs/development/python-modules
parent0963abfb41e48d60315e73223d390c1b4df3ff12 (diff)
downloadnixlib-42d11feae80f86b450ce64eef75a6f21dc807aab.tar
nixlib-42d11feae80f86b450ce64eef75a6f21dc807aab.tar.gz
nixlib-42d11feae80f86b450ce64eef75a6f21dc807aab.tar.bz2
nixlib-42d11feae80f86b450ce64eef75a6f21dc807aab.tar.lz
nixlib-42d11feae80f86b450ce64eef75a6f21dc807aab.tar.xz
nixlib-42d11feae80f86b450ce64eef75a6f21dc807aab.tar.zst
nixlib-42d11feae80f86b450ce64eef75a6f21dc807aab.zip
pythonPackages.isort: 4.2.5 -> 4.3.4
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/isort/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/isort/default.nix b/pkgs/development/python-modules/isort/default.nix
new file mode 100644
index 000000000000..5a7e50d43322
--- /dev/null
+++ b/pkgs/development/python-modules/isort/default.nix
@@ -0,0 +1,28 @@
+{ lib, buildPythonPackage, fetchPypi, isPy27, futures, mock, pytest }:
+
+buildPythonPackage rec {
+  pname = "isort";
+  version = "4.3.4";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1y0yfv56cqyh9wyg7kxxv9y5wmfgcq18n7a49mp7xmzka2bhxi5r";
+  };
+
+  propagatedBuildInputs = lib.optional isPy27 futures;
+
+  checkInputs = [ mock pytest ];
+
+  checkPhase = ''
+    py.test test_isort.py -k "not test_long_line_comments \
+                          and not test_import_case_produces_inconsistent_results_issue_472 \
+                          and not test_no_extra_lines_issue_557"
+  '';
+
+  meta = with lib; {
+    description = "A Python utility / library to sort Python imports";
+    homepage = https://github.com/timothycrosley/isort;
+    license = licenses.mit;
+    maintainers = with maintainers; [ couchemar nand0p ];
+  };
+}