nixpkgs/pkgs/development/python-modules/pysmbc/default.nix

24 lines
551 B
Nix
Raw Normal View History

2017-09-29 21:15:52 +02:00
{ stdenv, buildPythonPackage, fetchPypi
, samba, pkgconfig
, setuptools }:
buildPythonPackage rec {
2019-04-16 19:15:39 +02:00
version = "1.0.16";
2017-09-29 21:15:52 +02:00
pname = "pysmbc";
src = fetchPypi {
inherit pname version;
extension = "tar.bz2";
2019-04-16 19:15:39 +02:00
sha256 = "62199b5cca02c05d5f3b9edbc9a864fb8a2cbe47a465c0b9461642eb3b6f5aca";
2017-09-29 21:15:52 +02:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ setuptools samba ];
meta = with stdenv.lib; {
description = "libsmbclient binding for Python";
homepage = https://github.com/hamano/pysmbc;
2017-10-02 01:51:23 +02:00
license = licenses.gpl2Plus;
2017-09-29 21:15:52 +02:00
};
}