3
0
Fork 0
forked from mirrors/nixpkgs

python: beancount: 2.2.1 -> 2.2.3

This commit is contained in:
Aluísio Augusto Silva Gonçalves 2019-09-05 15:41:23 -03:00 committed by Frederik Rietdijk
parent 5d4890b58d
commit 084bd0ca66

View file

@ -1,20 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k { stdenv, buildPythonPackage, fetchPypi, isPy3k
, beautifulsoup4, bottle, chardet, dateutil , beautifulsoup4, bottle, chardet, dateutil
, google_api_python_client, lxml, ply, python_magic , google_api_python_client, lxml, oauth2client
, pytest, requests }: , ply, python_magic, pytest, requests }:
buildPythonPackage rec { buildPythonPackage rec {
version = "2.2.1"; version = "2.2.3";
pname = "beancount"; pname = "beancount";
disabled = !isPy3k; disabled = !isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0xrgmqv0wsc0makm5i6jwng99yp3rvm30v2xqmcah60fgjymkjzb"; sha256 = "0pcfl2rx2ng06i4f9izdpnlnb1k0rdzsckbzzn4cn4ixfzyssm0m";
}; };
# No tests in archive # Tests require files not included in the PyPI archive.
doCheck = false; doCheck = false;
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -24,6 +24,7 @@ buildPythonPackage rec {
dateutil dateutil
google_api_python_client google_api_python_client
lxml lxml
oauth2client
ply ply
python_magic python_magic
requests requests