depot/third_party/nixpkgs/pkgs/development/python-modules/twitter/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

36 lines
637 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
, pythonOlder
}:
buildPythonPackage rec {
pname = "twitter";
version = "1.19.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-g7jSSEpsdEihGuHG9MJTNVFe6NyB272vEsvAocRo72U=";
};
nativeBuildInputs = [
setuptools-scm
];
doCheck = false;
pythonImportsCheck = [
"twitter"
];
meta = with lib; {
description = "Twitter API library";
homepage = "https://mike.verdone.ca/twitter/";
license = licenses.mit;
maintainers = with maintainers; [ thoughtpolice ];
};
}