Skip to content

Commit

Permalink
Merge pull request NixOS#113902 from bhipple/m/bc
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 authored Feb 21, 2021
2 parents ef811f2 + f77c15c commit 95b7f99
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions pkgs/development/python-modules/beancount/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k
, beautifulsoup4, bottle, chardet, dateutil
, google_api_python_client, lxml, oauth2client
, ply, python_magic, pytest, requests }:
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, beautifulsoup4
, bottle
, chardet
, dateutil
, google_api_python_client
, lxml
, oauth2client
, ply
, pytest
, python_magic
, requests
}:

buildPythonPackage rec {
version = "2.3.3";
Expand Down Expand Up @@ -29,7 +41,7 @@ buildPythonPackage rec {
python_magic
requests
# pytest really is a runtime dependency
# https://bitbucket.org/blais/beancount/commits/554e13057551951e113835196770847c788dd592
# https://github.com/beancount/beancount/blob/v2/setup.py#L81-L82
pytest
];

Expand All @@ -41,8 +53,7 @@ buildPythonPackage rec {
financial transaction records in a text file, read them in memory,
generate a variety of reports from them, and provides a web interface.
'';
license = licenses.gpl2;
maintainers = with maintainers; [ ];
license = licenses.gpl2Only;
maintainers = with maintainers; [ bhipple ];
};
}

0 comments on commit 95b7f99

Please sign in to comment.