21 lines
477 B
Nix
Raw Normal View History

2018-07-30 20:28:24 +02:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "identify";
2020-07-31 10:56:40 +02:00
version = "1.4.25";
2018-07-30 20:28:24 +02:00
src = fetchPypi {
inherit pname version;
2020-07-31 10:56:40 +02:00
sha256 = "110ed090fec6bce1aabe3c72d9258a9de82207adeaa5a05cd75c635880312f9a";
2018-07-30 20:28:24 +02: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 20:28:24 +02:00
license = licenses.mit;
};
}