Merge pull request #120619 from amanjeev/semiphemeral-python-package
semiphemeral: init at 0.6
This commit is contained in:
commit
53d547ce19
|
@ -492,6 +492,12 @@
|
||||||
fingerprint = "B422 CFB1 C9EF 73F7 E1E2 698D F53E 3233 42F7 A6D3A";
|
fingerprint = "B422 CFB1 C9EF 73F7 E1E2 698D F53E 3233 42F7 A6D3A";
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
amanjeev = {
|
||||||
|
email = "aj@amanjeev.com";
|
||||||
|
github = "amanjeev";
|
||||||
|
githubId = 160476;
|
||||||
|
name = "Amanjeev Sethi";
|
||||||
|
};
|
||||||
amar1729 = {
|
amar1729 = {
|
||||||
email = "amar.paul16@gmail.com";
|
email = "amar.paul16@gmail.com";
|
||||||
github = "amar1729";
|
github = "amar1729";
|
||||||
|
|
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -25803,6 +25803,8 @@ in
|
||||||
|
|
||||||
secretscanner = callPackage ../tools/security/secretscanner { };
|
secretscanner = callPackage ../tools/security/secretscanner { };
|
||||||
|
|
||||||
|
semiphemeral = callPackage ../tools/misc/semiphemeral { };
|
||||||
|
|
||||||
sent = callPackage ../applications/misc/sent { };
|
sent = callPackage ../applications/misc/sent { };
|
||||||
|
|
||||||
seq24 = callPackage ../applications/audio/seq24 { };
|
seq24 = callPackage ../applications/audio/seq24 { };
|
||||||
|
|
Loading…
Reference in New Issue