mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #332874 from r-ryantm/auto-update/python312Packages.typecode
python312Packages.typecode: 30.0.1 -> 30.0.2
This commit is contained in:
commit
c088f30a42
1 changed files with 12 additions and 8 deletions
|
@ -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 = [ ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue