blob: 882244293988710882e351cbfddf959f9f16f1b3 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
requests,
six,
}:
buildPythonPackage rec {
pname = "pysignalclirestapi";
version = "0.3.24";
pyproject = true;
src = fetchFromGitHub {
owner = "bbernhard";
repo = "pysignalclirestapi";
tag = version;
hash = "sha256-LGP/Oo4FCvOq3LuUZRYFkK2JV1kEu3MeCDgnYo+91o4=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
requests
six
];
# upstream has no tests
doCheck = false;
pythonImportsCheck = [ "pysignalclirestapi" ];
meta = {
changelog = "https://github.com/bbernhard/pysignalclirestapi/releases/tag/${version}";
description = "Small python library for the Signal Cli REST API";
homepage = "https://github.com/bbernhard/pysignalclirestapi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|