pythonPackages.setuptools-scm-git-archive: init at 1.1

This commit is contained in:
Mario Rodas 2019-07-21 04:24:00 -05:00
parent f036eb62a9
commit 2b4495246a
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm, pytest }:
buildPythonPackage rec {
pname = "setuptools-scm-git-archive";
version = "1.1";
src = fetchPypi {
inherit version;
pname = "setuptools_scm_git_archive";
sha256 = "6026f61089b73fa1b5ee737e95314f41cb512609b393530385ed281d0b46c062";
};
nativeBuildInputs = [ setuptools_scm ];
checkInputs = [ pytest ];
meta = with stdenv.lib; {
description = "setuptools_scm plugin for git archives";
homepage = "https://github.com/Changaco/setuptools_scm_git_archive";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}

View File

@ -4651,6 +4651,8 @@ in {
setuptools_scm = callPackage ../development/python-modules/setuptools_scm { };
setuptools-scm-git-archive = callPackage ../development/python-modules/setuptools-scm-git-archive { };
serverlessrepo = callPackage ../development/python-modules/serverlessrepo { };
shippai = callPackage ../development/python-modules/shippai {};