Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / curtsies / default.nix
blob62f1435df30e9f8b45806abec4526f510641e56e
1 { lib, buildPythonPackage, fetchPypi, fetchpatch, pythonOlder, blessings, mock, nose, pyte, wcwidth, typing }:
3 buildPythonPackage rec {
4   pname = "curtsies";
5   version = "0.3.0";
6   src = fetchPypi {
7     inherit pname version;
8     sha256 = "89c802ec051d01dec6fc983e9856a3706e4ea8265d2940b1f6d504a9e26ed3a9";
9   };
11   patches = [
12     # Fix dependency on typing. Remove with the next release
13     (fetchpatch {
14       url = "https://github.com/bpython/curtsies/commit/217b4f83e954837f8adc4c549c1f2f9f2bb272a7.patch";
15       sha256 = "1d3zwx9c7i0drb4nvydalm9mr83jrvdm75ffgisri89h337hiffs";
16     })
17   ];
19   propagatedBuildInputs = [ blessings wcwidth ]
20     ++ lib.optionals (pythonOlder "3.5") [ typing ];
22   checkInputs = [ mock pyte nose ];
24   checkPhase = ''
25     nosetests tests
26   '';
28   meta = with lib; {
29     description = "Curses-like terminal wrapper, with colored strings!";
30     homepage = "https://github.com/bpython/curtsies";
31     license = licenses.mit;
32     maintainers = with maintainers; [ flokli ];
33   };