depot/third_party/nixpkgs/pkgs/tools/misc/gigalixir/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

57 lines
1 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; [ ];
};
}