mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
b934a91f70
This is a CLI client and not a library and as such it has no place in the python package set.
58 lines
1.0 KiB
Nix
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
|
|
];
|
|
|
|
checkInputs = [
|
|
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; [ ];
|
|
};
|
|
}
|