1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-18 00:49:52 +00:00

Merge pull request #145970 from prusnak/blocksat-cli

blocksat-cli: 0.4.0 -> 0.4.1
This commit is contained in:
Pavol Rusnak 2021-11-16 10:43:34 +01:00 committed by GitHub
commit 1492e2298f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

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";

View file

@ -24,6 +24,8 @@ buildPythonPackage rec {
sed -i -e '/argparse/d' setup.py
'';
pythonImportsCheck = [ "zfec" ];
meta = with lib; {
homepage = "https://github.com/tahoe-lafs/zfec";
description = "Zfec, a fast erasure codec which can be used with the command-line, C, Python, or Haskell";