nixpkgs/pkgs/development/python-modules/curtsies/default.nix

35 lines
1 KiB
Nix
Raw Normal View History

2018-12-05 04:01:45 +00:00
{ stdenv, buildPythonPackage, fetchPypi, fetchpatch, pythonOlder, blessings, mock, nose, pyte, wcwidth, typing }:
2017-10-29 10:21:18 +00:00
buildPythonPackage rec {
pname = "curtsies";
2018-02-17 13:19:06 +00:00
version = "0.3.0";
2017-10-29 10:21:18 +00:00
src = fetchPypi {
inherit pname version;
2018-02-17 13:19:06 +00:00
sha256 = "89c802ec051d01dec6fc983e9856a3706e4ea8265d2940b1f6d504a9e26ed3a9";
2017-10-29 10:21:18 +00:00
};
2018-12-05 04:01:45 +00:00
patches = [
# Fix dependency on typing. Remove with the next release
(fetchpatch {
url = "https://github.com/bpython/curtsies/commit/217b4f83e954837f8adc4c549c1f2f9f2bb272a7.patch";
2018-12-05 04:01:45 +00:00
sha256 = "1d3zwx9c7i0drb4nvydalm9mr83jrvdm75ffgisri89h337hiffs";
})
];
propagatedBuildInputs = [ blessings wcwidth ]
++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ];
2017-10-29 10:21:18 +00:00
checkInputs = [ mock pyte nose ];
2017-10-29 10:21:18 +00:00
checkPhase = ''
nosetests tests
2017-10-29 10:21:18 +00:00
'';
meta = with stdenv.lib; {
description = "Curses-like terminal wrapper, with colored strings!";
homepage = "https://github.com/bpython/curtsies";
2017-10-29 10:21:18 +00:00
license = licenses.mit;
maintainers = with maintainers; [ flokli ];
};
}