52 lines
1.6 KiB
Nix
52 lines
1.6 KiB
Nix
{ stdenv, fetchpatch, python36Packages }:
|
|
|
|
with stdenv.lib;
|
|
|
|
# Needs Python <3.7 for now, see https://github.com/louipc/turses/issues/4
|
|
with python36Packages;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "turses";
|
|
version = "0.3.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "15mkhm3b5ka42h8qph0mhh8izfc1200v7651c62k7ldcs50ib9j6";
|
|
};
|
|
|
|
disabled = ! python36Packages.pythonOlder "3.7";
|
|
|
|
checkInputs = [ mock pytest coverage tox ];
|
|
propagatedBuildInputs = [ urwid tweepy future ];
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/louipc/turses/commit/be0961b51f502d49fd9e2e5253ac130e543a31c7.patch";
|
|
sha256 = "17s1n0275mcj03vkf3n39dmc09niwv4y7ssrfk7k3vqx22kppzg3";
|
|
})
|
|
];
|
|
|
|
checkPhase = ''
|
|
TMP_TURSES=`echo turses-$RANDOM`
|
|
mkdir $TMP_TURSES
|
|
PYTHONPATH=tests:$PYTHONPATH HOME=$TMP_TURSES py.test tests/
|
|
rm -rf $TMP_TURSES
|
|
'';
|
|
|
|
postPatch = ''
|
|
sed -i -e 's|urwid==1.3.0|urwid==${getVersion urwid}|' setup.py
|
|
sed -i -e "s|future==0.14.3|future==${getVersion future}|" setup.py
|
|
sed -i -e "s|tweepy==3.3.0|tweepy==${getVersion tweepy}|" setup.py
|
|
sed -i -e "s|config.generate_config_file.assert_called_once()|assert config.generate_config_file.call_count == 1|" tests/test_config.py
|
|
sed -i -e "s|self.observer.update.assert_called_once()|assert self.observer.update.call_count == 1|" tests/test_meta.py
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/louipc/turses;
|
|
description = "A Twitter client for the console";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|