Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 487 B view raw
1{ lib, fetchPypi, buildPythonPackage }: 2 3buildPythonPackage rec { 4 pname = "dbfread"; 5 version = "2.0.7"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "07c8a9af06ffad3f6f03e8fe91ad7d2733e31a26d2b72c4dd4cfbae07ee3b73d"; 10 }; 11 12 meta = with lib; { 13 description = "Read DBF Files with Python"; 14 homepage = "https://dbfread.readthedocs.org/"; 15 license = with licenses; [ mit ]; 16 maintainers = with maintainers; [ vrthra ]; 17 }; 18}