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