My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/typecode/default.nix

64 lines
1.1 KiB

{ lib
, fetchPypi
, buildPythonPackage
, setuptools-scm
, attrs
, pdfminer
, commoncode
, plugincode
, binaryornot
, typecode-libmagic
, pytestCheckHook
, pytest-xdist
, pythonOlder
}:
buildPythonPackage rec {
pname = "typecode";
version = "30.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-pRGLU/xzQQqDZMIsrq1Fy7VgGIpFjnHtpmO+yL7t4g8=";
};
dontConfigure = true;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
attrs
pdfminer
commoncode
plugincode
binaryornot
typecode-libmagic
];
checkInputs = [
pytestCheckHook
pytest-xdist
];
disabledTests = [
"TestFileTypesDataDriven"
# AssertionError: assert 'application/x-bytecode.python'...
"test_compiled_python_1"
];
pythonImportsCheck = [
"typecode"
];
meta = with lib; {
description = "Comprehensive filetype and mimetype detection using libmagic and Pygments";
homepage = "https://github.com/nexB/typecode";
license = licenses.asl20;
maintainers = teams.determinatesystems.members;
};
}