Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 20 lines 462 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "identify"; 5 version = "1.4.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0vi9qxgnjgxdk4wj3c5ha3hjmc97j3pw1zh2cg39jprapn4rb4fq"; 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}