Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 476 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "identify"; 5 version = "1.5.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "7c22c384a2c9b32c5cc891d13f923f6b2653aa83e2d75d8f79be240d6c86c4f4"; 10 }; 11 12 # Tests not included in PyPI tarball 13 doCheck = false; 14 15 meta = with lib; { 16 description = "File identification library for Python"; 17 homepage = "https://github.com/chriskuehl/identify"; 18 license = licenses.mit; 19 }; 20}