Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / dbfread / default.nix
blob1708a75fc10e29b5d92391abc787ec4f158c51f2
1 { lib, fetchPypi, buildPythonPackage }:
3 buildPythonPackage rec {
4     pname = "dbfread";
5     version = "2.0.7";
7     src = fetchPypi {
8       inherit pname version;
9       sha256 = "07c8a9af06ffad3f6f03e8fe91ad7d2733e31a26d2b72c4dd4cfbae07ee3b73d";
10     };
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     };