summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-01-12 11:24:44 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-16 10:56:42 -0800
commit740630e480198c4313a266015dc5e3a9ed72c3b3 (patch)
tree4ca5f7afc2dd2f4bd23ba611b193b0b2ecfa67ff
parent0edb15fd4d4c82a5a6950ce6a16f2be9b63b8f5a (diff)
downloadnixpkgs-740630e480198c4313a266015dc5e3a9ed72c3b3.tar
nixpkgs-740630e480198c4313a266015dc5e3a9ed72c3b3.tar.gz
nixpkgs-740630e480198c4313a266015dc5e3a9ed72c3b3.tar.bz2
nixpkgs-740630e480198c4313a266015dc5e3a9ed72c3b3.tar.lz
nixpkgs-740630e480198c4313a266015dc5e3a9ed72c3b3.tar.xz
nixpkgs-740630e480198c4313a266015dc5e3a9ed72c3b3.tar.zst
nixpkgs-740630e480198c4313a266015dc5e3a9ed72c3b3.zip
pythonPackages.check-manifest: Fix dependencies
-rw-r--r--pkgs/development/python-modules/check-manifest/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/check-manifest/default.nix b/pkgs/development/python-modules/check-manifest/default.nix
index 18ce078269a..bf847a48ae9 100644
--- a/pkgs/development/python-modules/check-manifest/default.nix
+++ b/pkgs/development/python-modules/check-manifest/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, buildPythonPackage, fetchPypi, pep517, toml, mock, breezy, git }:
+{ lib, stdenv, buildPythonPackage, fetchPypi, pep517, toml, mock, breezy, git, build }:
 
 buildPythonPackage rec {
   pname = "check-manifest";
@@ -14,7 +14,7 @@ buildPythonPackage rec {
     substituteInPlace tests.py --replace "test_build_sdist" "no_test_build_sdist"
   '';
 
-  propagatedBuildInputs = [ pep517 toml ];
+  propagatedBuildInputs = [ build pep517 toml ];
 
   checkInputs = [ mock breezy git ];