Merge pull request #25407 from matthiasbeyer/add-toot

toot: init at 0.8.0 (including pythonPackages.beautifulsoup4 update)

authored by Frederik Rietdijk and committed by GitHub 5bcfd2f5 53da8338

+29 -2
+25
pkgs/applications/misc/toot/default.nix
··· 1 + { stdenv, fetchFromGitHub, pythonPackages }: 2 + 3 + pythonPackages.buildPythonApplication rec { 4 + version = "0.8.0"; 5 + name = "toot-${version}"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ihabunek"; 9 + repo = "toot"; 10 + rev = "${version}"; 11 + sha256 = "1y1jz4f53njq94zab0icf7jhd4jp10ywm508l4lw6spb69wr7rdy"; 12 + }; 13 + 14 + propagatedBuildInputs = with pythonPackages; 15 + [ requests2 beautifulsoup4 future ]; 16 + 17 + meta = with stdenv.lib; { 18 + description = "Mastodon CLI interface"; 19 + homepage = "https://github.com/ihabunek/toot"; 20 + license = licenses.mit; 21 + maintainers = [ maintainers.matthiasbeyer ]; 22 + }; 23 + 24 + } 25 +
+2
pkgs/top-level/all-packages.nix
··· 15932 15932 15933 15933 tortoisehg = callPackage ../applications/version-management/tortoisehg { }; 15934 15934 15935 + toot = callPackage ../applications/misc/toot { }; 15936 + 15935 15937 toxic = callPackage ../applications/networking/instant-messengers/toxic { }; 15936 15938 15937 15939 transcode = callPackage ../applications/audio/transcode { };
+2 -2
pkgs/top-level/python-packages.nix
··· 2144 2144 }); 2145 2145 2146 2146 beautifulsoup4 = buildPythonPackage (rec { 2147 - name = "beautifulsoup4-4.5.1"; 2147 + name = "beautifulsoup4-4.5.3"; 2148 2148 2149 2149 src = pkgs.fetchurl { 2150 2150 url = "mirror://pypi/b/beautifulsoup4/${name}.tar.gz"; 2151 - sha256 = "1qgmhw65ncsgccjhslgkkszif47q6gvxwqv4mim17agxd81p951w"; 2151 + sha256 = "0glaw1vyxnbp03fni7h5496n6iib0n5iim4gax1n0ngscs9s075j"; 2152 2152 }; 2153 2153 2154 2154 buildInputs = [ self.nose ];