about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/smpplib/default.nix
blob: fe22f121efb7e8398175aa713a0b80ecf25aa9e1 (plain) (blame)
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
{ buildPythonPackage, fetchPypi, lib, python, six, tox, mock, pytest }:

buildPythonPackage rec {
  pname = "smpplib";
  version = "2.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0jzxlfwf0861ilh4xyd70hmkdbvdki52aalglm1bnpxkg6i3jhfz";
  };

  propagatedBuildInputs = [ six ];
  checkInputs = [ tox mock pytest ];

  checkPhase = ''
    pytest
  '';

  postInstall = ''
    rm -rf $out/${python.sitePackages}/tests
  '';

  meta = with lib; {
    description = "SMPP library for Python";
    homepage = "https://github.com/python-smpplib/python-smpplib";
    license = licenses.lgpl3Plus;
    maintainers = [ maintainers.globin ];
  };
}