Merge pull request #314908 from r-ryantm/auto-update/python311Packages.hiyapyco

python311Packages.hiyapyco: 0.5.6 -> 0.6.0
This commit is contained in:
Peder Bergebakken Sundt 2024-06-10 23:37:01 +02:00 committed by GitHub
commit c0fad1b4ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 3 deletions

View File

@ -21,8 +21,13 @@ python3.pkgs.buildPythonApplication rec {
sed -i '/argparse/d' pyproject.toml
'';
nativeBuildInputs = [
pythonRelaxDeps = [
"hiyapyco"
];
nativeBuildInputs = [
python3.pkgs.poetry-core
python3.pkgs.pythonRelaxDepsHook
];
buildInputs = [

View File

@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "hiyapyco";
version = "0.5.6";
version = "0.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "zerwes";
repo = pname;
rev = "refs/tags/release-${version}";
hash = "sha256-WBSOjOX4naa0XDTnO593EAvtz5EjVPWCbiZaPXdx0e4=";
hash = "sha256-F+OPoFEUTHWSo5Pc46Wwt4j/x7w0BjhJhpLEdNPr7H0=";
};
nativeBuildInputs = [ setuptools ];