d0a9f5e77e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/toot/versions.
32 lines
687 B
Nix
32 lines
687 B
Nix
{ stdenv, fetchFromGitHub, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
version = "0.19.0";
|
|
name = "toot-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ihabunek";
|
|
repo = "toot";
|
|
rev = "${version}";
|
|
sha256 = "1z0r6yqi522d5jbpd0w3prd33l067jb1jhfnxf6hkzhnx1wddjsa";
|
|
};
|
|
|
|
checkInputs = with python3Packages; [ pytest ];
|
|
|
|
propagatedBuildInputs = with python3Packages;
|
|
[ requests beautifulsoup4 future ];
|
|
|
|
checkPhase = ''
|
|
py.test
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Mastodon CLI interface";
|
|
homepage = "https://github.com/ihabunek/toot";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
|
|
}
|
|
|