about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pysmbc/default.nix
blob: 83465ab859a2b5bb9316e0cfe552c5e83fd23309 (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
41
42
{ lib
, buildPythonPackage
, fetchPypi
, samba
, pkg-config
, pythonOlder
}:

buildPythonPackage rec {
  pname = "pysmbc";
  version = "1.0.25.1";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-IvFxXfglif2cxCU/6rOQtO8Lq/FPZFE82NB7N4mWMiY=";
  };

  nativeBuildInputs = [
    pkg-config
  ];

  buildInputs = [
    samba
  ];

  # Tests would require a local SMB server
  doCheck = false;

  pythonImportsCheck = [
    "smbc"
  ];

  meta = with lib; {
    description = "libsmbclient binding for Python";
    homepage = "https://github.com/hamano/pysmbc";
    license = with licenses; [ gpl2Plus ];
    maintainers = with maintainers; [ fab ];
  };
}