From 3c5a6eb3138510a165b4f50b337cc9c44268f158 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 12 Jul 2015 12:53:57 +0000 Subject: [PATCH] cython: 0.20.1 -> 0.22.1 --- pkgs/top-level/python-packages.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 377afc06624..c3fbfe87a66 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2187,11 +2187,12 @@ let }; cython = buildPythonPackage rec { - name = "Cython-0.20.1"; + name = "Cython-${version}"; + version = "0.22.1"; src = pkgs.fetchurl { url = "http://www.cython.org/release/${name}.tar.gz"; - sha256 = "0v3nc9z5ynnnjdgcgkyy5g9wazmkjv53nnpjal1v3mr199s6799i"; + sha256 = "7fff120e65e7b66edb4a42823f5642bad3bc1e5601bf882d66aee50248cf0682"; }; setupPyBuildFlags = ["--build-base=$out"]; @@ -2199,8 +2200,10 @@ let buildInputs = with self; [ pkgs.pkgconfig ]; meta = { - description = "An interpreter to help writing C extensions for Python 2"; + description = "An optimising static compiler for both the Python programming language and the extended Cython programming language"; platforms = platforms.all; + homepage = http://cython.org; + license = licenses.asl20; }; };