python310Packages.smbprotocol: add changelog to meta

- clean-up inputs
- update disabled
This commit is contained in:
Fabian Affolter 2022-11-20 10:44:04 +01:00
parent e6ab90e164
commit f7835037da

View File

@ -7,7 +7,6 @@
, pytest-mock
, pytestCheckHook
, pythonOlder
, six
}:
buildPythonPackage rec {
@ -15,19 +14,18 @@ buildPythonPackage rec {
version = "1.10.1";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jborean93";
repo = pname;
rev = "v${version}";
sha256 = "sha256-8T091yF/Hu60aaUr6IDZt2cLxz1sXUbMewSqW1Ch0Vo=";
rev = "refs/tags/v${version}";
hash = "sha256-8T091yF/Hu60aaUr6IDZt2cLxz1sXUbMewSqW1Ch0Vo=";
};
propagatedBuildInputs = [
cryptography
pyspnego
six
];
checkInputs = [
@ -52,6 +50,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python SMBv2 and v3 Client";
homepage = "https://github.com/jborean93/smbprotocol";
changelog = "https://github.com/jborean93/smbprotocol/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};