summary refs log tree commit diff
path: root/pkgs/development/python-modules/future
diff options
context:
space:
mode:
authorJustin Humm <justin.humm@posteo.de>2017-05-30 01:19:07 +0200
committerJustin Humm <justin.humm@posteo.de>2017-05-30 13:06:56 +0200
commite6b65c04fa9752eeeb41241638852af901389406 (patch)
treef6b38986b10a96701ce5368b68bac8aff19328db /pkgs/development/python-modules/future
parent4e88e82e065653f0ca3418aaa7b2af7cdcde8e15 (diff)
downloadnixlib-e6b65c04fa9752eeeb41241638852af901389406.tar
nixlib-e6b65c04fa9752eeeb41241638852af901389406.tar.gz
nixlib-e6b65c04fa9752eeeb41241638852af901389406.tar.bz2
nixlib-e6b65c04fa9752eeeb41241638852af901389406.tar.lz
nixlib-e6b65c04fa9752eeeb41241638852af901389406.tar.xz
nixlib-e6b65c04fa9752eeeb41241638852af901389406.tar.zst
nixlib-e6b65c04fa9752eeeb41241638852af901389406.zip
pythonPackages.future: 0.15.2 -> 0.16.0
Also moved the expression from python-packages.nix to ./pkgs/development/python-modules/future/default.nix due to discussion in #26220
Used fetchPypi insted of fetchurl.
Diffstat (limited to 'pkgs/development/python-modules/future')
-rw-r--r--pkgs/development/python-modules/future/default.nix40
1 files changed, 40 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/future/default.nix b/pkgs/development/python-modules/future/default.nix
new file mode 100644
index 000000000000..c368913caae9
--- /dev/null
+++ b/pkgs/development/python-modules/future/default.nix
@@ -0,0 +1,40 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, isPy26
+, importlib
+, argparse
+}:
+
+buildPythonPackage rec {
+  pname = "future";
+  version = "0.16.0";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1nzy1k4m9966sikp0qka7lirh8sqrsyainyf8rk97db7nwdfv773";
+  };
+
+  propagatedBuildInputs = lib.optionals isPy26 [ importlib argparse ];
+  doCheck = false;
+
+  meta = {
+    description = "Clean single-source support for Python 3 and 2";
+    longDescription = ''
+      python-future is the missing compatibility layer between Python 2 and
+      Python 3. It allows you to use a single, clean Python 3.x-compatible
+      codebase to support both Python 2 and Python 3 with minimal overhead.
+
+      It provides future and past packages with backports and forward ports
+      of features from Python 3 and 2. It also comes with futurize and
+      pasteurize, customized 2to3-based scripts that helps you to convert
+      either Py2 or Py3 code easily to support both Python 2 and 3 in a
+      single clean Py3-style codebase, module by module.
+    '';
+    homepage = https://python-future.org;
+    downloadPage = https://github.com/PythonCharmers/python-future/releases;
+    license = with lib.licenses; [ mit ];
+    maintainers = with lib.maintainers; [ prikhi ];
+  };
+}