forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / by-name / se / semiphemeral / package.nix
blob173431e526f72dbe561cffb04b211829fbbf1ba9
1 { lib
2 , python3
3 , fetchPypi
4 }:
6 python3.pkgs.buildPythonApplication rec {
7   pname = "semiphemeral";
8   version = "0.7";
10   src = fetchPypi {
11     inherit pname version;
12     hash = "sha256-KRi3zfRWGRZJjQ6KPqBI9wQ6yU8Ohx0TDtA5qoak35U=";
13   };
15   doCheck = false; # upstream has no tests
17   pythonImportsCheck = [ "semiphemeral" ];
19   propagatedBuildInputs = with python3.pkgs; [ click sqlalchemy flask tweepy colorama ];
21   meta = with lib; {
22     description = "Automatically delete your old tweets, except for the ones you want to keep";
23     homepage = "https://github.com/micahflee/semiphemeral";
24     license = licenses.mit;
25     maintainers = with maintainers; [ amanjeev ];
26     mainProgram = "semiphemeral";
27   };