From 798c5469d94d85947beb7f2ed475aa6c9dc5b91f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 30 Oct 2015 09:11:47 +0100 Subject: [PATCH] python cycler: init at 0.9.0 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7ca1b919e55..383707cd87c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1253,6 +1253,25 @@ let }; }; + cycler = buildPythonPackage rec { + name = "cycler-${version}"; + version = "0.9.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/C/Cycler/${name}.tar.gz"; + sha256 = "96dc4ddf27ef62c09990c6196ac1167685e89168042ec0ae4db586de023355bc"; + }; + + propagatedBuildInputs = with self; [ six ]; + + meta = { + description = "Composable style cycles"; + homepage = http://github.com/matplotlib/cycler; + license = licenses.bsd3; + maintainer = with maintainers; [ fridh ]; + }; + }; + debian = buildPythonPackage rec { name = "${pname}-${version}"; pname = "python-debian";