python310Packages.hdfs: 2.5.8 -> 2.7.2 (#251851)

* python310Packages.hdfs: 2.5.8 -> 2.7.2

* python310Packages.hdfs: add changelog to meta

* python310Packages.hdfs: remove obsolete comment

---------

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
Co-authored-by: Weijia Wang <9713184+wegank@users.noreply.github.com>
This commit is contained in:
R. RyanTM 2023-08-31 14:06:35 -07:00 committed by GitHub
parent 71fa0dcf7d
commit 451ae26ed2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,14 +11,13 @@
buildPythonPackage rec {
pname = "hdfs";
# See https://github.com/mtth/hdfs/issues/176.
version = "2.5.8";
version = "2.7.2";
src = fetchFromGitHub {
owner = "mtth";
repo = pname;
rev = version;
hash = "sha256-94Q3IUoX1Cb+uRqvsfpVZJ1koJSx5cQ3/XpYJ0gkQNU=";
rev = "refs/tags/v${version}";
hash = "sha256-KXJDQEc4+T9r8sB41SOgcx8Gth3qAOZceoOpsLbJ+ak=";
};
propagatedBuildInputs = [ docopt requests six ];
@ -30,6 +29,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python API and command line interface for HDFS";
homepage = "https://github.com/mtth/hdfs";
changelog = "https://github.com/mtth/hdfs/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ samuela ];
};