Merge pull request #120619 from amanjeev/semiphemeral-python-package

semiphemeral: init at 0.6
This commit is contained in:
Robert Schütz 2021-04-26 17:29:47 +02:00 committed by GitHub
commit 53d547ce19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View file

@ -492,6 +492,12 @@
fingerprint = "B422 CFB1 C9EF 73F7 E1E2 698D F53E 3233 42F7 A6D3A";
}];
};
amanjeev = {
email = "aj@amanjeev.com";
github = "amanjeev";
githubId = 160476;
name = "Amanjeev Sethi";
};
amar1729 = {
email = "amar.paul16@gmail.com";
github = "amar1729";

View file

@ -0,0 +1,26 @@
{ lib
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "semiphemeral";
version = "0.6";
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "c90d73b14c826f262b1339d1f5926c5abc6431181090ea87177af821c0866fb7";
};
doCheck = false; # upstream has no tests
pythonImportsCheck = [ "semiphemeral" ];
propagatedBuildInputs = with python3.pkgs; [ click sqlalchemy flask tweepy colorama ];
meta = with lib; {
description = "Automatically delete your old tweets, except for the ones you want to keep";
homepage = "https://github.com/micahflee/semiphemeral";
license = licenses.mit;
maintainers = with maintainers; [ amanjeev ];
};
}

View file

@ -25803,6 +25803,8 @@ in
secretscanner = callPackage ../tools/security/secretscanner { };
semiphemeral = callPackage ../tools/misc/semiphemeral { };
sent = callPackage ../applications/misc/sent { };
seq24 = callPackage ../applications/audio/seq24 { };