Merge pull request #25407 from matthiasbeyer/add-toot
toot: init at 0.8.0 (including pythonPackages.beautifulsoup4 update)
This commit is contained in:
commit
5bcfd2f56c
25
pkgs/applications/misc/toot/default.nix
Normal file
25
pkgs/applications/misc/toot/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -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 { };
|
||||
|
@ -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 ];
|
||||
|
Loading…
Reference in New Issue
Block a user