python3.pkgs.python-vagrant: 1.0.0 -> 1.1.0

This commit is contained in:
Theodore Ni 2023-08-23 14:31:53 -07:00
parent b7df9ed8df
commit 5f00ddcf0b
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -1,21 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, setuptools
, setuptools-scm
, wheel
}:
buildPythonPackage rec {
version = "1.0.0";
version = "1.1.0";
pname = "python-vagrant";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-qP6TzPL/N+zJXsL0nqdKkabOc6TbShapjdJtOXz9CeU=";
src = fetchFromGitHub {
owner = "pycontribs";
repo = "python-vagrant";
rev = "refs/tags/v${version}";
hash = "sha256-apvYzH0IY6ZyUP/FiOVbGN3dXejgN7gn7Mq2tlEaTww=";
};
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
# The tests try to connect to qemu