Merge pull request #148393 from fabaff/bump-bitlist

python3Packages.parts: 1.1.2 -> 1.2.0, python3Packages.bitlist: 0.5.1 -> 0.6.0
This commit is contained in:
Fabian Affolter 2021-12-04 09:44:45 +01:00 committed by GitHub
commit 73fa2c6faa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 38 additions and 13 deletions

View file

@ -8,11 +8,12 @@
buildPythonPackage rec {
pname = "bitlist";
version = "0.5.1";
version = "0.6.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-bX/Z5FBm21gX4ax/HfqD2bNotZyNFX7dHCEN5uZzQJQ=";
sha256 = "sha256-LTrn+PCaqob0EGyyv1V1uCBeDQZvIYE1hNPqi4y/zfc=";
};
propagatedBuildInputs = [
@ -24,12 +25,9 @@ buildPythonPackage rec {
nose
];
postPatch = ''
substituteInPlace setup.py \
--replace "parts~=1.0.3" "parts>=1.0.3"
'';
pythonImportsCheck = [ "bitlist" ];
pythonImportsCheck = [
"bitlist"
];
meta = with lib; {
description = "Python library for working with little-endian list representation of bit strings";

View file

@ -11,6 +11,7 @@
buildPythonPackage rec {
pname = "fe25519";
version = "1.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
@ -28,7 +29,15 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "fe25519" ];
postPatch = ''
substituteInPlace setup.py \
--replace "bitlist~=0.5.1" "bitlist>=0.5.1" \
--replace "parts~=1.1.2" "parts>=1.1.2"
'';
pythonImportsCheck = [
"fe25519"
];
meta = with lib; {
description = "Python field operations for Curve25519's prime";

View file

@ -17,6 +17,11 @@ buildPythonPackage rec {
bitlist
];
postPatch = ''
substituteInPlace setup.py \
--replace "bitlist~=0.5.1" "bitlist>=0.5.1"
'';
# Project has no test
doCheck = false;

View file

@ -12,6 +12,7 @@
buildPythonPackage rec {
pname = "ge25519";
version = "1.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
@ -30,7 +31,15 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "ge25519" ];
postPatch = ''
substituteInPlace setup.py \
--replace "bitlist~=0.5.1" "bitlist>=0.5.1" \
--replace "parts~=1.1.2" "parts>=1.1.2"
'';
pythonImportsCheck = [
"ge25519"
];
meta = with lib; {
description = "Python implementation of Ed25519 group elements and operations";

View file

@ -5,16 +5,20 @@
buildPythonPackage rec {
pname = "parts";
version = "1.1.2";
version = "1.2.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "2212129476f6d285c3aaab309b80b83664d13dca5a42c5ca3500bd32130af7ec";
sha256 = "sha256-sfeh6KdprW40ZgfItm9oojDlrI4X29+O7pzfafIawB0=";
};
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "parts" ];
pythonImportsCheck = [
"parts"
];
meta = with lib; {
description = "Python library for common list functions related to partitioning lists";