Merge pull request #118301 from siriobalmelli-foss/fix/python3Packages.beancount_docverif

python3Packages.beancount_docverif: add build dependency
This commit is contained in:
Luke Granger-Brown 2021-05-03 10:15:16 +01:00 committed by GitHub
commit 991a93e1f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

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
];