1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/python-modules/identify/default.nix

21 lines
465 B
Nix
Raw Normal View History

2018-07-30 19:28:24 +01:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "identify";
version = "1.4.21";
2018-07-30 19:28:24 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "105n1prgmzkzdwr8q0bdx82nj7i8p3af1abh864k2fcyjwmpzl64";
2018-07-30 19:28:24 +01: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 19:28:24 +01:00
license = licenses.mit;
};
}