pysmbc: init at 1.0.15.8

This commit is contained in:
Symphorien Gibol 2017-09-29 21:15:52 +02:00
parent 9824ca6975
commit a1f1889f55
2 changed files with 26 additions and 0 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

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