python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / semiphemeral / default.nix
blob67f0f62e877f27cf7fbcea7683622ee94dd70efd
1 { lib
2 , python3
3 }:
5 python3.pkgs.buildPythonApplication rec {
6   pname = "semiphemeral";
7   version = "0.6";
9   src = python3.pkgs.fetchPypi {
10     inherit pname version;
11     sha256 = "c90d73b14c826f262b1339d1f5926c5abc6431181090ea87177af821c0866fb7";
12   };
14   doCheck = false; # upstream has no tests
16   pythonImportsCheck = [ "semiphemeral" ];
18   propagatedBuildInputs = with python3.pkgs; [ click sqlalchemy flask tweepy colorama ];
20   meta = with lib; {
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 ];
25   };