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

buildPythonPackage rec {
  version = "1.0.15.8";
  pname = "pysmbc";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    extension = "tar.bz2";
    sha256 = "07dzxfdqaj6zjg2rxxdww363bh8m02mcvgk47jw005cik9wc2rq5";
  };

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ setuptools samba ];

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