mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
semiphemeral: init at 0.6
semiphemeral: init at 0.6 semiphemeral: init at 0.6 semiphemeral: init at 0.6 semiphemeral: fix formatting semiphemeral: refactor for flexibility semiphemeral: remove extraneous inherit semiphemeral: no check since upstream has no tests semiphemeral: refactor move to misc instead of social/twitter semiphemeral: fix formatting
This commit is contained in:
parent
bf4c2036af
commit
281efa2651
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/misc/semiphemeral/default.nix
Normal file
26
pkgs/tools/misc/semiphemeral/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -25795,6 +25795,8 @@ in
|
|||
|
||||
secretscanner = callPackage ../tools/security/secretscanner { };
|
||||
|
||||
semiphemeral = callPackage ../tools/misc/semiphemeral { };
|
||||
|
||||
sent = callPackage ../applications/misc/sent { };
|
||||
|
||||
seq24 = callPackage ../applications/audio/seq24 { };
|
||||
|
|
Loading…
Reference in a new issue