nixpkgs/pkgs/development/python-modules/identify/default.nix

21 lines
477 B
Nix
Raw Normal View History

2018-07-30 11:28:24 -07:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "identify";
2020-08-16 10:31:03 -07:00
version = "1.4.27";
2018-07-30 11:28:24 -07:00
src = fetchPypi {
inherit pname version;
2020-08-16 10:31:03 -07:00
sha256 = "4c3646d765127b003d2bed8db1e125d68f5f83ad0cd85e21c908ef87a5e24be1";
2018-07-30 11:28:24 -07:00
};
# Tests not included in PyPI tarball
doCheck = false;
meta = with lib; {
description = "File identification library for Python";
homepage = "https://github.com/chriskuehl/identify";
2018-07-30 11:28:24 -07:00
license = licenses.mit;
};
}