1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/development/python-modules/identify/default.nix

21 lines
476 B
Nix
Raw Normal View History

2018-07-30 19:28:24 +01:00
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "identify";
version = "1.5.9";
2018-07-30 19:28:24 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "c9504ba6a043ee2db0a9d69e43246bc138034895f6338d5aed1b41e4a73b1513";
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;
};
}