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