mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-17 13:30:27 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
60 lines
1020 B
Nix
60 lines
1020 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, httplib2
|
|
, keyring
|
|
, lazr-restfulclient
|
|
, lazr-uri
|
|
, setuptools
|
|
, six
|
|
, testresources
|
|
, wadllib
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "launchpadlib";
|
|
version = "1.11.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-AYmMk3R3sMZKdTOK2wl3Ao1zRqigGesCPPaP7ZmFAUY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
httplib2
|
|
keyring
|
|
lazr-restfulclient
|
|
lazr-uri
|
|
setuptools
|
|
six
|
|
testresources
|
|
wadllib
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
doCheck = isPy3k;
|
|
|
|
pythonImportsCheck = [
|
|
"launchpadlib"
|
|
"launchpadlib.apps"
|
|
"launchpadlib.credentials"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Script Launchpad through its web services interfaces. Officially supported";
|
|
homepage = "https://help.launchpad.net/API/launchpadlib";
|
|
license = licenses.lgpl3Only;
|
|
maintainers = [ maintainers.marsam ];
|
|
};
|
|
}
|