Merge pull request #120485 from MetaDark/git-review
git-review: 2.0.0 -> 2.1.0
This commit is contained in:
commit
632292a4db
@ -1,8 +1,14 @@
|
|||||||
{ lib, fetchurl, buildPythonApplication, pbr, requests, setuptools }:
|
{ lib
|
||||||
|
, fetchurl
|
||||||
|
, buildPythonApplication
|
||||||
|
, pbr
|
||||||
|
, requests
|
||||||
|
, setuptools
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "git-review";
|
pname = "git-review";
|
||||||
version = "2.0.0";
|
version = "2.1.0";
|
||||||
|
|
||||||
# Manually set version because prb wants to get it from the git
|
# Manually set version because prb wants to get it from the git
|
||||||
# upstream repository (and we are installing from tarball instead)
|
# upstream repository (and we are installing from tarball instead)
|
||||||
@ -10,17 +16,28 @@ buildPythonApplication rec {
|
|||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://opendev.org/opendev/${pname}/archive/${version}.tar.gz";
|
url = "https://opendev.org/opendev/${pname}/archive/${version}.tar.gz";
|
||||||
sha256 = "0dkyd5g2xmvsa114is3cd9qmki3hi6c06wjnra0f4xq3aqm0ajnj";
|
hash = "sha256-3A1T+/iXhNeMS2Aww5jISoiNExdv9N9/kwyATSuwVTE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pbr requests setuptools ];
|
nativeBuildInputs = [
|
||||||
|
pbr
|
||||||
|
];
|
||||||
|
|
||||||
# Don't do tests because they require gerrit which is not packaged
|
propagatedBuildInputs = [
|
||||||
|
requests
|
||||||
|
setuptools # implicit dependency, used to get package version through pkg_resources
|
||||||
|
];
|
||||||
|
|
||||||
|
# Don't run tests because they pull in external dependencies
|
||||||
|
# (a specific build of gerrit + maven plugins), and I haven't figured
|
||||||
|
# out how to work around this yet.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "git_review" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://opendev.org/opendev/git-review";
|
|
||||||
description = "Tool to submit code to Gerrit";
|
description = "Tool to submit code to Gerrit";
|
||||||
|
homepage = "https://opendev.org/opendev/git-review";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ metadark ];
|
maintainers = with maintainers; [ metadark ];
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user