evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / dbfread / default.nix
blob26d8046ea8f25147ebe430a45461fcc2e43a2f69
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5 }:
7 buildPythonPackage rec {
8   pname = "dbfread";
9   version = "2.0.7";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "07c8a9af06ffad3f6f03e8fe91ad7d2733e31a26d2b72c4dd4cfbae07ee3b73d";
15   };
17   meta = with lib; {
18     description = "Read DBF Files with Python";
19     homepage = "https://dbfread.readthedocs.org/";
20     license = with licenses; [ mit ];
21     maintainers = [ ];
22   };