Merge pull request #332874 from r-ryantm/auto-update/python312Packages.typecode

python312Packages.typecode: 30.0.1 -> 30.0.2
This commit is contained in:
Nick Cao 2024-08-09 22:54:51 -04:00 committed by GitHub
commit c088f30a42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,6 +2,7 @@
lib,
fetchPypi,
buildPythonPackage,
setuptools,
setuptools-scm,
attrs,
pdfminer-six,
@ -16,21 +17,24 @@
buildPythonPackage rec {
pname = "typecode";
version = "30.0.1";
format = "setuptools";
version = "30.0.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Glc5QiTVr//euymeNTxGN+FVaOEa6cUxHGyGo9bQrJc=";
hash = "sha256-F2idIK8K5hFueX7yxd5l8M6AkSjPDmhHmzS9a6S8OJg=";
};
dontConfigure = true;
nativeBuildInputs = [ setuptools-scm ];
build-system = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
dependencies = [
attrs
pdfminer-six
commoncode
@ -48,7 +52,7 @@ buildPythonPackage rec {
"TestFileTypesDataDriven"
# Many of the failures below are reported in:
# https://github.com/nexB/typecode/issues/36
# https://github.com/aboutcode-org/typecode/issues/36
# AssertionError: assert 'application/x-bytecode.python'...
"test_compiled_python_1"
@ -63,8 +67,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Comprehensive filetype and mimetype detection using libmagic and Pygments";
homepage = "https://github.com/nexB/typecode";
changelog = "https://github.com/nexB/typecode/releases/tag/v${version}";
homepage = "https://github.com/aboutcode-org/typecode";
changelog = "https://github.com/aboutcode-org/typecode/releases/tag/v${version}";
license = licenses.asl20;
maintainers = [ ];
};