nixpkgs/pkgs/tools/misc/gigalixir/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
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.
2023-01-21 12:00:00 +00:00

58 lines
1.0 KiB
Nix

{ stdenv
, lib
, python3
, git
}:
python3.pkgs.buildPythonApplication rec {
pname = "gigalixir";
version = "1.3.0";
format = "setuptools";
src = python3.pkgs.fetchPypi {
inherit pname version;
hash = "sha256-kNtybgv8j7t1tl6R5ZuC4vj5fnEcEenuNt0twA1kAh0=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "'pytest-runner'," "" \
--replace "cryptography==" "cryptography>="
'';
propagatedBuildInputs = with python3.pkgs; [
click
pygments
pyopenssl
qrcode
requests
rollbar
stripe
];
nativeCheckInputs = [
git
] ++ (with python3.pkgs; [
httpretty
pytestCheckHook
sure
]);
disabledTests = [
# Test requires network access
"test_rollback_without_version"
];
pythonImportsCheck = [
"gigalixir"
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Gigalixir Command-Line Interface";
homepage = "https://github.com/gigalixir/gigalixir-cli";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}