3
0
Fork 0
forked from mirrors/nixpkgs

blocksat-cli: 0.4.0 -> 0.4.1

This commit is contained in:
Pavol Rusnak 2021-11-14 18:33:11 +01:00
parent 93fdfcba63
commit 0d3fcab2a0
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D

View file

@ -13,11 +13,11 @@
buildPythonPackage rec {
pname = "blocksat-cli";
version = "0.4.0";
version = "0.4.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-g/V1//Jo8wnoOHEotF2ElVm+vzTIwZ6EzssJg6WJw6g=";
sha256 = "96ec5e548dcdb71ada75727d76b34006fe5f6818bd89cf982e15616d41889603";
};
propagatedBuildInputs = [
@ -35,11 +35,15 @@ buildPythonPackage rec {
pytestFlagsArray = [
# disable tests which require being connected to the satellite
"--ignore=blocksatcli/test_satip.py"
"--ignore=blocksatcli/api/test_listen.py"
"--ignore=blocksatcli/api/test_msg.py"
"--ignore=blocksatcli/api/test_net.py"
# disable tests which require being online
"--ignore=blocksatcli/api/test_order.py"
];
pythonImportsCheck = [ "blocksatcli" ];
meta = with lib; {
description = "Blockstream Satellite CLI";
homepage = "https://github.com/Blockstream/satellite";