1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "identify";
5 version = "1.2.2";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "d3ddec4436e043c3398392b4ba8936b4ab52fa262284e767eb6c351d9b3ab5b7";
10 };
11
12 # Tests not included in PyPI tarball
13 doCheck = false;
14
15 meta = with lib; {
16 description = "File identification library for Python";
17 homepage = https://github.com/chriskuehl/identify;
18 license = licenses.mit;
19 };
20}