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

buildPythonPackage rec {
  version = "1.0.21";
  pname = "pysmbc";

  src = fetchPypi {
    inherit pname version;
    extension = "tar.bz2";
    sha256 = "14b75f358ical7zzqh3g1qkh2dxwxn2gz7sah5f5svndqkd3z8jy";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ setuptools samba ];

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