python311Packges.ansible-vault-rw: fix build

This commit is contained in:
Martin Weinelt
2023-12-20 20:46:38 +01:00
parent e5c6eb12e9
commit 9c729e475e
@@ -1,15 +1,35 @@
{ lib, buildPythonPackage, fetchPypi, ansible-core, ... }:
{ lib
, buildPythonPackage
, fetchPypi
# build-system
, setuptools
# dependencies
, ansible-core
# tests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ansible-vault-rw";
version = "2.1.0";
format = "setuptools";
pyproject = true;
src = fetchPypi {
pname = "ansible-vault";
inherit version;
sha256 = "sha256-XOj9tUcPFEm3a/B64qvFZIDa1INWrkBchbaG77ZNvV4";
hash = "sha256-XOj9tUcPFEm3a/B64qvFZIDa1INWrkBchbaG77ZNvV4";
};
propagatedBuildInputs = [ ansible-core ];
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
ansible-core
];
# Otherwise tests will fail to create directory
# Permission denied: '/homeless-shelter'
@@ -17,6 +37,13 @@ buildPythonPackage rec {
export HOME=$(mktemp -d)
'';
# no tests in sdist, no 2.1.0 tag on git
doCheck = false;
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "This project aim to R/W an ansible-vault yaml file.";
homepage = "https://github.com/tomoh1r/ansible-vault";