python310Packages.setuptools-scm-git-archive: 1.1 -> 1.4

This commit is contained in:
Mario Rodas 2022-07-14 00:04:20 +00:00
parent 70e5346a93
commit ef791b29a8

View File

@ -1,20 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, setuptools-scm, pytest }:
{ lib, buildPythonPackage, fetchPypi, setuptools-scm, pytestCheckHook }:
buildPythonPackage rec {
pname = "setuptools-scm-git-archive";
version = "1.1";
version = "1.4";
src = fetchPypi {
inherit version;
pname = "setuptools_scm_git_archive";
sha256 = "6026f61089b73fa1b5ee737e95314f41cb512609b393530385ed281d0b46c062";
sha256 = "b048b27b32e1e76ec865b0caa4bb85df6ddbf4697d6909f567ac36709f6ef2f0";
};
nativeBuildInputs = [ setuptools-scm ];
checkInputs = [ pytest ];
checkInputs = [ pytestCheckHook ];
pytestFlagsArray = [
"tests.py"
];
doCheck = false;
pythonImportsCheck = [ "setuptools_scm_git_archive" ];
meta = with lib; {