ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / cycler / default.nix
blobb9bd167c6a9458c71dfd87fddcb4efac909d0a0b
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , coverage
5 , nose
6 , six
7 , python
8 }:
10 buildPythonPackage rec {
11   pname = "cycler";
12   version = "0.11.0";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "9c87405839a19696e837b3b818fed3f5f69f16f1eec1a1ad77e043dcea9c772f";
17   };
19   checkInputs = [ coverage nose ];
20   propagatedBuildInputs = [ six ];
22   checkPhase = ''
23     ${python.interpreter} run_tests.py
24   '';
26   # Tests were not included in release.
27   # https://github.com/matplotlib/cycler/issues/31
28   doCheck = false;
30   meta = {
31     description = "Composable style cycles";
32     homepage = "https://github.com/matplotlib/cycler";
33     license = lib.licenses.bsd3;
34     maintainers = with lib.maintainers; [ fridh ];
35   };