5 python3.pkgs.buildPythonApplication rec {
6 pname = "semiphemeral";
9 src = python3.pkgs.fetchPypi {
10 inherit pname version;
11 sha256 = "c90d73b14c826f262b1339d1f5926c5abc6431181090ea87177af821c0866fb7";
14 doCheck = false; # upstream has no tests
16 pythonImportsCheck = [ "semiphemeral" ];
18 propagatedBuildInputs = with python3.pkgs; [ click sqlalchemy flask tweepy colorama ];
21 description = "Automatically delete your old tweets, except for the ones you want to keep";
22 homepage = "https://github.com/micahflee/semiphemeral";
23 license = licenses.mit;
24 maintainers = with maintainers; [ amanjeev ];