Merge pull request #145970 from prusnak/blocksat-cli

blocksat-cli: 0.4.0 -> 0.4.1

authored by Pavol Rusnak and committed by GitHub 1492e229 7ba1fac5

+8 -2
+6 -2
pkgs/development/python-modules/blocksat-cli/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "blocksat-cli"; 16 - version = "0.4.0"; 16 + version = "0.4.1"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "sha256-g/V1//Jo8wnoOHEotF2ElVm+vzTIwZ6EzssJg6WJw6g="; 20 + sha256 = "96ec5e548dcdb71ada75727d76b34006fe5f6818bd89cf982e15616d41889603"; 21 21 }; 22 22 23 23 propagatedBuildInputs = [ ··· 35 35 pytestFlagsArray = [ 36 36 # disable tests which require being connected to the satellite 37 37 "--ignore=blocksatcli/test_satip.py" 38 + "--ignore=blocksatcli/api/test_listen.py" 39 + "--ignore=blocksatcli/api/test_msg.py" 38 40 "--ignore=blocksatcli/api/test_net.py" 39 41 # disable tests which require being online 40 42 "--ignore=blocksatcli/api/test_order.py" 41 43 ]; 44 + 45 + pythonImportsCheck = [ "blocksatcli" ]; 42 46 43 47 meta = with lib; { 44 48 description = "Blockstream Satellite CLI";
+2
pkgs/development/python-modules/zfec/default.nix
··· 24 24 sed -i -e '/argparse/d' setup.py 25 25 ''; 26 26 27 + pythonImportsCheck = [ "zfec" ]; 28 + 27 29 meta = with lib; { 28 30 homepage = "https://github.com/tahoe-lafs/zfec"; 29 31 description = "Zfec, a fast erasure codec which can be used with the command-line, C, Python, or Haskell";