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:
parent
71fa0dcf7d
commit
451ae26ed2
1 changed files with 4 additions and 4 deletions
|
@ -11,14 +11,13 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "hdfs";
|
pname = "hdfs";
|
||||||
# See https://github.com/mtth/hdfs/issues/176.
|
version = "2.7.2";
|
||||||
version = "2.5.8";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mtth";
|
owner = "mtth";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-94Q3IUoX1Cb+uRqvsfpVZJ1koJSx5cQ3/XpYJ0gkQNU=";
|
hash = "sha256-KXJDQEc4+T9r8sB41SOgcx8Gth3qAOZceoOpsLbJ+ak=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ docopt requests six ];
|
propagatedBuildInputs = [ docopt requests six ];
|
||||||
|
@ -30,6 +29,7 @@ buildPythonPackage rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python API and command line interface for HDFS";
|
description = "Python API and command line interface for HDFS";
|
||||||
homepage = "https://github.com/mtth/hdfs";
|
homepage = "https://github.com/mtth/hdfs";
|
||||||
|
changelog = "https://github.com/mtth/hdfs/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ samuela ];
|
maintainers = with maintainers; [ samuela ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue