Merge pull request #169274 from r-ryantm/auto-update/python3.10-bitstruct

python310Packages.bitstruct: 8.13.0 -> 8.14.0
This commit is contained in:
Fabian Affolter 2022-04-19 08:53:14 +02:00 committed by GitHub
commit 7768b69836
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,28 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "bitstruct";
version = "8.13.0";
version = "8.14.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-e4fZ5B/1UqjK4G6iNow3crbzECvatLZeeTvnWQ1p8Ds=";
hash = "sha256-IwwZHHXxUm9pIs2wjqtvUsBVRS4iOb9WOPAunP04LJE=";
};
pythonImportsCheck = [
"bitstruct"
];
meta = with lib; {
homepage = "https://github.com/eerimoq/bitstruct";
description = "Python bit pack/unpack package";
homepage = "https://github.com/eerimoq/bitstruct";
license = licenses.mit;
maintainers = with maintainers; [ jakewaksbaum ];
};