depot/third_party/nixpkgs/pkgs/development/python-modules/pysignalclirestapi/default.nix
Default email 8e65f7f0cc Project import generated by Copybara.
GitOrigin-RevId: 062a0c5437b68f950b081bbfc8a699d57a4ee026
2022-03-05 17:20:37 +01:00

37 lines
747 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, future
}:
buildPythonPackage rec {
pname = "pysignalclirestapi";
version = "0.3.18";
format = "setuptools";
src = fetchFromGitHub {
owner = "bbernhard";
repo = "pysignalclirestapi";
rev = version;
hash = "sha256-BF4BmnQVfrj7f0N+TN/d7GNuDTbDQfwsCkUn2pVmMWo=";
};
propagatedBuildInputs = [
requests
future
];
# upstream has no tests
doCheck = false;
pythonImportsCheck = [ "pysignalclirestapi" ];
meta = with lib; {
description = "Small python library for the Signal Cli REST API";
homepage = "https://github.com/bbernhard/pysignalclirestapi";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}