Merge pull request #113902 from bhipple/m/bc

This commit is contained in:
Jörg Thalheim 2021-02-21 19:15:01 +00:00 committed by GitHub
commit 95b7f99014
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,19 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k { lib
, beautifulsoup4, bottle, chardet, dateutil , buildPythonPackage
, google_api_python_client, lxml, oauth2client , fetchPypi
, ply, python_magic, pytest, requests }: , isPy3k
, beautifulsoup4
, bottle
, chardet
, dateutil
, google_api_python_client
, lxml
, oauth2client
, ply
, pytest
, python_magic
, requests
}:
buildPythonPackage rec { buildPythonPackage rec {
version = "2.3.3"; version = "2.3.3";
@ -29,7 +41,7 @@ buildPythonPackage rec {
python_magic python_magic
requests requests
# pytest really is a runtime dependency # 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 pytest
]; ];
@ -41,8 +53,7 @@ buildPythonPackage rec {
financial transaction records in a text file, read them in memory, financial transaction records in a text file, read them in memory,
generate a variety of reports from them, and provides a web interface. generate a variety of reports from them, and provides a web interface.
''; '';
license = licenses.gpl2; license = licenses.gpl2Only;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ bhipple ];
}; };
} }