pythonPackages.identify: init at 1.1.4
This commit is contained in:
@@ -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;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -3046,6 +3046,8 @@ in {
|
|||||||
|
|
||||||
idna-ssl = callPackage ../development/python-modules/idna-ssl { };
|
idna-ssl = callPackage ../development/python-modules/idna-ssl { };
|
||||||
|
|
||||||
|
identify = callPackage ../development/python-modules/identify { };
|
||||||
|
|
||||||
ijson = callPackage ../development/python-modules/ijson {};
|
ijson = callPackage ../development/python-modules/ijson {};
|
||||||
|
|
||||||
imagesize = buildPythonPackage rec {
|
imagesize = buildPythonPackage rec {
|
||||||
|
|||||||
Reference in New Issue
Block a user