python310Packages.setuptools-scm-git-archive: 1.1 -> 1.4
This commit is contained in:
parent
70e5346a93
commit
ef791b29a8
@ -1,20 +1,23 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, setuptools-scm, pytest }:
|
{ lib, buildPythonPackage, fetchPypi, setuptools-scm, pytestCheckHook }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "setuptools-scm-git-archive";
|
pname = "setuptools-scm-git-archive";
|
||||||
version = "1.1";
|
version = "1.4";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit version;
|
inherit version;
|
||||||
pname = "setuptools_scm_git_archive";
|
pname = "setuptools_scm_git_archive";
|
||||||
sha256 = "6026f61089b73fa1b5ee737e95314f41cb512609b393530385ed281d0b46c062";
|
sha256 = "b048b27b32e1e76ec865b0caa4bb85df6ddbf4697d6909f567ac36709f6ef2f0";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ setuptools-scm ];
|
nativeBuildInputs = [ setuptools-scm ];
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
|
pytestFlagsArray = [
|
||||||
|
"tests.py"
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
pythonImportsCheck = [ "setuptools_scm_git_archive" ];
|
pythonImportsCheck = [ "setuptools_scm_git_archive" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user