lol

Merge pull request #113902 from bhipple/m/bc

authored by

Jörg Thalheim and committed by
GitHub
95b7f990 ef811f2d

+19 -8
+19 -8
pkgs/development/python-modules/beancount/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k 2 - , beautifulsoup4, bottle, chardet, dateutil 3 - , google_api_python_client, lxml, oauth2client 4 - , ply, python_magic, pytest, requests }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , isPy3k 5 + , beautifulsoup4 6 + , bottle 7 + , chardet 8 + , dateutil 9 + , google_api_python_client 10 + , lxml 11 + , oauth2client 12 + , ply 13 + , pytest 14 + , python_magic 15 + , requests 16 + }: 5 17 6 18 buildPythonPackage rec { 7 19 version = "2.3.3"; ··· 29 41 python_magic 30 42 requests 31 43 # pytest really is a runtime dependency 32 - # https://bitbucket.org/blais/beancount/commits/554e13057551951e113835196770847c788dd592 44 + # https://github.com/beancount/beancount/blob/v2/setup.py#L81-L82 33 45 pytest 34 46 ]; 35 47 ··· 41 53 financial transaction records in a text file, read them in memory, 42 54 generate a variety of reports from them, and provides a web interface. 43 55 ''; 44 - license = licenses.gpl2; 45 - maintainers = with maintainers; [ ]; 56 + license = licenses.gpl2Only; 57 + maintainers = with maintainers; [ bhipple ]; 46 58 }; 47 59 } 48 -