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
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;
};
}