Merge pull request #25407 from matthiasbeyer/add-toot

toot: init at 0.8.0 (including pythonPackages.beautifulsoup4 update)
This commit is contained in:
Frederik Rietdijk 2017-05-02 09:35:47 +02:00 committed by GitHub
commit 5bcfd2f56c
3 changed files with 29 additions and 2 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, pythonPackages }:
pythonPackages.buildPythonApplication rec {
version = "0.8.0";
name = "toot-${version}";
src = fetchFromGitHub {
owner = "ihabunek";
repo = "toot";
rev = "${version}";
sha256 = "1y1jz4f53njq94zab0icf7jhd4jp10ywm508l4lw6spb69wr7rdy";
};
propagatedBuildInputs = with pythonPackages;
[ requests2 beautifulsoup4 future ];
meta = with stdenv.lib; {
description = "Mastodon CLI interface";
homepage = "https://github.com/ihabunek/toot";
license = licenses.mit;
maintainers = [ maintainers.matthiasbeyer ];
};
}

View File

@ -15932,6 +15932,8 @@ with pkgs;
tortoisehg = callPackage ../applications/version-management/tortoisehg { };
toot = callPackage ../applications/misc/toot { };
toxic = callPackage ../applications/networking/instant-messengers/toxic { };
transcode = callPackage ../applications/audio/transcode { };

View File

@ -2144,11 +2144,11 @@ in {
});
beautifulsoup4 = buildPythonPackage (rec {
name = "beautifulsoup4-4.5.1";
name = "beautifulsoup4-4.5.3";
src = pkgs.fetchurl {
url = "mirror://pypi/b/beautifulsoup4/${name}.tar.gz";
sha256 = "1qgmhw65ncsgccjhslgkkszif47q6gvxwqv4mim17agxd81p951w";
sha256 = "0glaw1vyxnbp03fni7h5496n6iib0n5iim4gax1n0ngscs9s075j";
};
buildInputs = [ self.nose ];