pythonPackages.identify: init at 1.1.4

This commit is contained in:
Boris Babic 2018-07-30 20:28:24 +02:00
parent 9250c264d8
commit 632d3b5d7d
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "identify";
version = "1.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "0hvwfpf6fmgn93abrvj88pi7sbcib32s4c5r99lw67kbziq5x129";
};
# Tests not included in PyPI tarball
doCheck = false;
meta = with lib; {
description = "File identification library for Python";
homepage = https://github.com/chriskuehl/identify;
license = licenses.mit;
};
}

View File

@ -3046,6 +3046,8 @@ in {
idna-ssl = callPackage ../development/python-modules/idna-ssl { };
identify = callPackage ../development/python-modules/identify { };
ijson = callPackage ../development/python-modules/ijson {};
imagesize = buildPythonPackage rec {