blob: 165d642af2320361355ae07508374c524585c577 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pysignalclirestapi";
version = "0.3.14";
# disabled = ; # requires python version >=2.7
src = fetchPypi {
inherit pname version;
sha256 = "6f3626b594a53c4161dfc67ea7a3b23d62c8fe8cb404a909496118aeefa79cd0";
};
doCheck = false;
meta = with lib; {
description = "Small python library for the Signal Cli REST API";
homepage = https://github.com/bbernhard/pysignalclirestapi;
#license = licenses.;
# maintainers = [ maintainers. ];
};
}
|