blob: 91747f2dc6634746c24746e14bef6ce0f8ab0f59 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
python,
six,
mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "smpplib";
version = "2.2.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-bzsDb8smQ8G3oyibtaxMmnIK8b9z5XLicp22tdgAwnM=";
};
propagatedBuildInputs = [ six ];
nativeCheckInputs = [
mock
pytestCheckHook
];
postInstall = ''
rm -rf $out/${python.sitePackages}/tests
'';
pythonImportsCheck = [ "smpplib" ];
meta = {
description = "SMPP library for Python";
homepage = "https://github.com/python-smpplib/python-smpplib";
changelog = "https://github.com/python-smpplib/python-smpplib/releases/tag/${version}";
license = lib.licenses.lgpl3Plus;
maintainers = [ ];
};
}
|