python310Packages.argh: Fix build
Migrate to the pep517 build, because native setuptools support was dropped.
This commit is contained in:
parent
3cef961264
commit
b0cc0b44f4
1 changed files with 6 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, fetchpatch
|
||||
, flit-core
|
||||
, iocapture
|
||||
, mock
|
||||
, pytestCheckHook
|
||||
|
@ -10,12 +11,17 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "argh";
|
||||
version = "0.28.1";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-sgkwhvDoCaPswktkohRTCe6PVtA0k2zVnlfFWKNXMp0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
flit-core
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
iocapture
|
||||
mock
|
||||
|
|
Loading…
Reference in a new issue