linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / ofxparse / default.nix
blobd018a924d898d6674adcee25241de65e11e347a2
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 , beautifulsoup4
6 , lxml
7 }:
9 buildPythonPackage rec {
10   pname = "ofxparse";
11   version = "0.20";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0zn3grc6xhgzcc81qc3dxkkwk731cjjqqhb46smw12lk09cdnigb";
16   };
18   propagatedBuildInputs = [ six beautifulsoup4 lxml ];
20   meta = with lib; {
21     homepage = "http://sites.google.com/site/ofxparse";
22     description = "Tools for working with the OFX (Open Financial Exchange) file format";
23     license = licenses.mit;
24   };