Merge pull request #148393 from fabaff/bump-bitlist

python3Packages.parts: 1.1.2 -> 1.2.0, python3Packages.bitlist: 0.5.1 -> 0.6.0

authored by Fabian Affolter and committed by GitHub 73fa2c6f 506870c4

+38 -13
+6 -8
pkgs/development/python-modules/bitlist/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "bitlist"; 11 - version = "0.5.1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "sha256-bX/Z5FBm21gX4ax/HfqD2bNotZyNFX7dHCEN5uZzQJQ="; 16 }; 17 18 propagatedBuildInputs = [ ··· 24 nose 25 ]; 26 27 - postPatch = '' 28 - substituteInPlace setup.py \ 29 - --replace "parts~=1.0.3" "parts>=1.0.3" 30 - ''; 31 - 32 - pythonImportsCheck = [ "bitlist" ]; 33 34 meta = with lib; { 35 description = "Python library for working with little-endian list representation of bit strings";
··· 8 9 buildPythonPackage rec { 10 pname = "bitlist"; 11 + version = "0.6.0"; 12 + format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 + sha256 = "sha256-LTrn+PCaqob0EGyyv1V1uCBeDQZvIYE1hNPqi4y/zfc="; 17 }; 18 19 propagatedBuildInputs = [ ··· 25 nose 26 ]; 27 28 + pythonImportsCheck = [ 29 + "bitlist" 30 + ]; 31 32 meta = with lib; { 33 description = "Python library for working with little-endian list representation of bit strings";
+10 -1
pkgs/development/python-modules/fe25519/default.nix
··· 11 buildPythonPackage rec { 12 pname = "fe25519"; 13 version = "1.0.0"; 14 15 src = fetchPypi { 16 inherit pname version; ··· 28 pytestCheckHook 29 ]; 30 31 - pythonImportsCheck = [ "fe25519" ]; 32 33 meta = with lib; { 34 description = "Python field operations for Curve25519's prime";
··· 11 buildPythonPackage rec { 12 pname = "fe25519"; 13 version = "1.0.0"; 14 + format = "setuptools"; 15 16 src = fetchPypi { 17 inherit pname version; ··· 29 pytestCheckHook 30 ]; 31 32 + postPatch = '' 33 + substituteInPlace setup.py \ 34 + --replace "bitlist~=0.5.1" "bitlist>=0.5.1" \ 35 + --replace "parts~=1.1.2" "parts>=1.1.2" 36 + ''; 37 + 38 + pythonImportsCheck = [ 39 + "fe25519" 40 + ]; 41 42 meta = with lib; { 43 description = "Python field operations for Curve25519's prime";
+5
pkgs/development/python-modules/fountains/default.nix
··· 17 bitlist 18 ]; 19 20 # Project has no test 21 doCheck = false; 22
··· 17 bitlist 18 ]; 19 20 + postPatch = '' 21 + substituteInPlace setup.py \ 22 + --replace "bitlist~=0.5.1" "bitlist>=0.5.1" 23 + ''; 24 + 25 # Project has no test 26 doCheck = false; 27
+10 -1
pkgs/development/python-modules/ge25519/default.nix
··· 12 buildPythonPackage rec { 13 pname = "ge25519"; 14 version = "1.0.0"; 15 16 src = fetchPypi { 17 inherit pname version; ··· 30 pytestCheckHook 31 ]; 32 33 - pythonImportsCheck = [ "ge25519" ]; 34 35 meta = with lib; { 36 description = "Python implementation of Ed25519 group elements and operations";
··· 12 buildPythonPackage rec { 13 pname = "ge25519"; 14 version = "1.0.0"; 15 + format = "setuptools"; 16 17 src = fetchPypi { 18 inherit pname version; ··· 31 pytestCheckHook 32 ]; 33 34 + postPatch = '' 35 + substituteInPlace setup.py \ 36 + --replace "bitlist~=0.5.1" "bitlist>=0.5.1" \ 37 + --replace "parts~=1.1.2" "parts>=1.1.2" 38 + ''; 39 + 40 + pythonImportsCheck = [ 41 + "ge25519" 42 + ]; 43 44 meta = with lib; { 45 description = "Python implementation of Ed25519 group elements and operations";
+7 -3
pkgs/development/python-modules/parts/default.nix
··· 5 6 buildPythonPackage rec { 7 pname = "parts"; 8 - version = "1.1.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 - sha256 = "2212129476f6d285c3aaab309b80b83664d13dca5a42c5ca3500bd32130af7ec"; 13 }; 14 15 # Project has no tests 16 doCheck = false; 17 - pythonImportsCheck = [ "parts" ]; 18 19 meta = with lib; { 20 description = "Python library for common list functions related to partitioning lists";
··· 5 6 buildPythonPackage rec { 7 pname = "parts"; 8 + version = "1.2.0"; 9 + format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-sfeh6KdprW40ZgfItm9oojDlrI4X29+O7pzfafIawB0="; 14 }; 15 16 # Project has no tests 17 doCheck = false; 18 + 19 + pythonImportsCheck = [ 20 + "parts" 21 + ]; 22 23 meta = with lib; { 24 description = "Python library for common list functions related to partitioning lists";