python3Packages.jaraco_functools: fix build

This commit is contained in:
Jonathan Ringer 2020-06-12 10:33:39 -07:00
parent 31e1a8b002
commit 89307ea34d

View File

@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi { lib, buildPythonPackage, fetchPypi
, setuptools_scm , setuptools_scm, toml
, more-itertools, backports_functools_lru_cache }: , more-itertools, backports_functools_lru_cache }:
buildPythonPackage rec { buildPythonPackage rec {
@ -11,12 +11,12 @@ buildPythonPackage rec {
sha256 = "9fedc4be3117512ca3e03e1b2ffa7a6a6ffa589bfb7d02bfb324e55d493b94f4"; sha256 = "9fedc4be3117512ca3e03e1b2ffa7a6a6ffa589bfb7d02bfb324e55d493b94f4";
}; };
nativeBuildInputs = [ setuptools_scm toml ];
propagatedBuildInputs = [ more-itertools backports_functools_lru_cache ]; propagatedBuildInputs = [ more-itertools backports_functools_lru_cache ];
doCheck = false; doCheck = false;
buildInputs = [ setuptools_scm ];
meta = with lib; { meta = with lib; {
description = "Additional functools in the spirit of stdlib's functools"; description = "Additional functools in the spirit of stdlib's functools";
homepage = "https://github.com/jaraco/jaraco.functools"; homepage = "https://github.com/jaraco/jaraco.functools";