Merge pull request #179832 from r-ryantm/auto-update/python3.10-fastbencode

python310Packages.fastbencode: 0.0.7 -> 0.0.9
This commit is contained in:
Mario Rodas 2022-07-01 19:46:33 -05:00 committed by GitHub
commit 76a55acedb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "fastbencode";
version = "0.0.7";
version = "0.0.9";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-tryavlQtBmN5NSlXb0m6iJFQhVT4XQm11tXtevfgxuQ=";
sha256 = "sha256-pQhjLGRfLj/7tJhMtUQDXIlG1v7Iz+CuxeVWNAdzzpw=";
};
nativeBuildInputs = [ cython ];
@ -20,7 +20,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Fast implementation of bencode";
homepage = "https://github.com/breezy-team/fastbencode";
license = licenses.gpl2Only;
license = licenses.gpl2Plus;
maintainers = [ maintainers.marsam ];
};
}