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

21 lines
474 B
Nix
Raw Normal View History

2018-07-30 18:28:24 +00:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "identify";
2018-10-06 10:56:17 +00:00
version = "1.1.7";
2018-07-30 18:28:24 +00:00
src = fetchPypi {
inherit pname version;
2018-10-06 10:56:17 +00:00
sha256 = "5e956558a9a1e3b3891d7c6609fc9709657a11878af288ace484d1a46a93922b";
2018-07-30 18:28:24 +00:00
};
# 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;
};
}