pythonPackages.identify: init at 1.1.4
This commit is contained in:
parent
9250c264d8
commit
632d3b5d7d
20
pkgs/development/python-modules/identify/default.nix
Normal file
20
pkgs/development/python-modules/identify/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user