evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / ofxparse / default.nix
blob6d1da80a8c04c3f638c36c3754fce0b935fb7a60
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   six,
6   beautifulsoup4,
7   lxml,
8 }:
10 buildPythonPackage rec {
11   pname = "ofxparse";
12   version = "0.21";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "19y4sp5l9jqiqzzlbqdfiab42qx7d84n4xm4s7jfq397666vcyh5";
18   };
20   propagatedBuildInputs = [
21     six
22     beautifulsoup4
23     lxml
24   ];
26   meta = with lib; {
27     homepage = "http://sites.google.com/site/ofxparse";
28     description = "Tools for working with the OFX (Open Financial Exchange) file format";
29     license = licenses.mit;
30   };