Merge pull request #29939 from symphorien/pysmbc

Pysmbc
This commit is contained in:
Orivej Desh 2017-10-01 22:37:23 +00:00 committed by GitHub
commit 4f37b89eae
3 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,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.gplv2;
};
}

View File

@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ wrapGAppsHook ];
pythonPath = with pythonPackages;
[ pycups pycurl dbus-python pygobject3 requests pycairo pythonPackages.pycurl ];
[ pycups pycurl dbus-python pygobject3 requests pycairo pysmbc ];
configureFlags =
[ "--with-udev-rules"

View File

@ -16841,6 +16841,8 @@ in {
pyshp = callPackage ../development/python-modules/pyshp { };
pysmbc = callPackage ../development/python-modules/pysmbc { };
pyspread = callPackage ../development/python-modules/pyspread { };
pyx = buildPythonPackage rec {