2020-10-29 22:10:39 +00:00
|
|
|
{ lib, fetchurl, buildPythonApplication, pbr, requests, setuptools }:
|
2015-11-30 17:57:23 +00:00
|
|
|
|
2020-10-29 22:10:39 +00:00
|
|
|
buildPythonApplication rec {
|
2019-04-25 22:50:43 +01:00
|
|
|
pname = "git-review";
|
2021-04-09 23:10:02 +01:00
|
|
|
version = "2.0.0";
|
2015-11-30 17:57:23 +00:00
|
|
|
|
|
|
|
# Manually set version because prb wants to get it from the git
|
|
|
|
# upstream repository (and we are installing from tarball instead)
|
2019-09-09 00:38:31 +01:00
|
|
|
PBR_VERSION = version;
|
2015-11-30 17:57:23 +00:00
|
|
|
|
2020-10-29 22:10:39 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://opendev.org/opendev/${pname}/archive/${version}.tar.gz";
|
2021-04-09 23:10:02 +01:00
|
|
|
sha256 = "0dkyd5g2xmvsa114is3cd9qmki3hi6c06wjnra0f4xq3aqm0ajnj";
|
2015-11-30 17:57:23 +00:00
|
|
|
};
|
|
|
|
|
2020-10-29 22:10:39 +00:00
|
|
|
propagatedBuildInputs = [ pbr requests setuptools ];
|
2015-11-30 17:57:23 +00:00
|
|
|
|
|
|
|
# Don't do tests because they require gerrit which is not packaged
|
|
|
|
doCheck = false;
|
|
|
|
|
2020-10-29 22:10:39 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://opendev.org/opendev/git-review";
|
2015-11-30 17:57:23 +00:00
|
|
|
description = "Tool to submit code to Gerrit";
|
2020-10-29 22:10:39 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ metadark ];
|
2015-11-30 17:57:23 +00:00
|
|
|
};
|
|
|
|
}
|