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