My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pysignalclirestapi/default.nix

37 lines
747 B

{ 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 ];
};
}