python3Packages.beancount_docverif: add build dependency

Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
Co-authored-by: Sandro Jäckel <sandro.jaeckel@gmail.com>
This commit is contained in:
Sirio Balmelli 2021-04-01 12:21:35 +02:00
parent e7e72e070b
commit 3c1e706bee
No known key found for this signature in database
GPG Key ID: 0437A96EFE4C426E

View File

@ -1,4 +1,5 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k
, setuptools-scm
, beancount
, pytest, sh
}:
@ -14,6 +15,10 @@ buildPythonPackage rec {
sha256 = "1kjc0axrxpvm828lqq5m2ikq0ls8xksbmm7312zw867gdx56x5aj";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
beancount
];