nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / se / semiphemeral / package.nix
blob6dbacb7d50d698b23b13bde36a570ea474d8eb10
2   lib,
3   python3,
4   fetchPypi,
5 }:
7 python3.pkgs.buildPythonApplication rec {
8   pname = "semiphemeral";
9   version = "0.7";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-KRi3zfRWGRZJjQ6KPqBI9wQ6yU8Ohx0TDtA5qoak35U=";
14   };
16   doCheck = false; # upstream has no tests
18   pythonImportsCheck = [ "semiphemeral" ];
20   propagatedBuildInputs = with python3.pkgs; [
21     click
22     sqlalchemy
23     flask
24     tweepy
25     colorama
26   ];
28   meta = with lib; {
29     description = "Automatically delete your old tweets, except for the ones you want to keep";
30     homepage = "https://github.com/micahflee/semiphemeral";
31     license = licenses.mit;
32     maintainers = with maintainers; [ amanjeev ];
33     mainProgram = "semiphemeral";
34   };