evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / suds / default.nix
blob35dc2eeaa5bc1ce8f027ea9f974d25ae7dc2d5b1
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6   setuptools,
7   six,
8 }:
10 buildPythonPackage rec {
11   pname = "suds";
12   version = "1.2.0";
13   pyproject = true;
15   src = fetchFromGitHub {
16     owner = "suds-community";
17     repo = "suds";
18     rev = "refs/tags/v${version}";
19     hash = "sha256-YdL+zDelRspQ6VMqa45vK1DDS3HjFvKE1P02USVBrEo=";
20   };
22   build-system = [ setuptools ];
24   env.SUDS_PACKAGE = "suds";
26   nativeCheckInputs = [
27     pytestCheckHook
28     six
29   ];
31   pythonImportsCheck = [ "suds" ];
33   meta = {
34     changelog = "https://github.com/suds-community/suds/blob/v${version}/CHANGELOG.md";
35     description = "Lightweight SOAP python client for consuming Web Services";
36     homepage = "https://github.com/suds-community/suds";
37     license = lib.licenses.lgpl3Plus;
38     maintainers = with lib.maintainers; [ wrmilling ];
39   };