about summary refs log tree commit diff
path: root/pkgs/development/python-modules/suds/default.nix
blob: 35dc2eeaa5bc1ce8f027ea9f974d25ae7dc2d5b1 (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
30
31
32
33
34
35
36
37
38
39
40
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  setuptools,
  six,
}:

buildPythonPackage rec {
  pname = "suds";
  version = "1.2.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "suds-community";
    repo = "suds";
    rev = "refs/tags/v${version}";
    hash = "sha256-YdL+zDelRspQ6VMqa45vK1DDS3HjFvKE1P02USVBrEo=";
  };

  build-system = [ setuptools ];

  env.SUDS_PACKAGE = "suds";

  nativeCheckInputs = [
    pytestCheckHook
    six
  ];

  pythonImportsCheck = [ "suds" ];

  meta = {
    changelog = "https://github.com/suds-community/suds/blob/v${version}/CHANGELOG.md";
    description = "Lightweight SOAP python client for consuming Web Services";
    homepage = "https://github.com/suds-community/suds";
    license = lib.licenses.lgpl3Plus;
    maintainers = with lib.maintainers; [ wrmilling ];
  };
}