mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python3Packages.executing: fix build
Adds missing setuptools-scm dependency.
This commit is contained in:
parent
f140e5b2bf
commit
8c41a03a2d
1 changed files with 5 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, setuptools-scm
|
||||
, asttokens
|
||||
}:
|
||||
|
||||
|
@ -15,6 +16,10 @@ buildPythonPackage rec {
|
|||
sha256 = "1hqx94h6l2wg9sljiaajfay2nr62sqa819w3bxrz8cdki1abdygv";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
preBuild = ''
|
||||
export SETUPTOOLS_SCM_PRETEND_VERSION="${version}"
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue