about summary refs log tree commit diff
path: root/pkgs/development/python-modules/typecode
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2021-04-19 20:43:45 -0700
committerCole Helbling <cole.e.helbling@outlook.com>2021-04-23 09:10:58 -0700
commit44559894241d88d6f9f696c27310def847a38c52 (patch)
tree79dd4a9ecf45fa1a1203c5e9ab6cc628dbdf2932 /pkgs/development/python-modules/typecode
parentf72f9ff62489c0438ee8196ec9a9ec7554cd271a (diff)
python3.pkgs.typecode: init at 21.2.24
Diffstat (limited to 'pkgs/development/python-modules/typecode')
-rw-r--r--pkgs/development/python-modules/typecode/default.nix53
1 files changed, 53 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/typecode/default.nix b/pkgs/development/python-modules/typecode/default.nix
new file mode 100644
index 0000000000000..c1208193f017b
--- /dev/null
+++ b/pkgs/development/python-modules/typecode/default.nix
@@ -0,0 +1,53 @@
+{ lib
+, fetchPypi
+, buildPythonPackage
+, setuptools-scm
+, attrs
+, pdfminer
+, commoncode
+, plugincode
+, binaryornot
+, typecode-libmagic
+, pytestCheckHook
+, pytest-xdist
+}:
+buildPythonPackage rec {
+  pname = "typecode";
+  version = "21.2.24";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "eaac8aee0b9c6142ad44671252ba00748202d218347d1c0451ce6cd76561e01b";
+  };
+
+  dontConfigure = true;
+
+  nativeBuildInputs = [
+    setuptools-scm
+  ];
+
+  propagatedBuildInputs = [
+    attrs
+    pdfminer
+    commoncode
+    plugincode
+    binaryornot
+    typecode-libmagic
+  ];
+
+  checkInputs = [
+    pytestCheckHook
+    pytest-xdist
+  ];
+
+  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;
+  };
+}