Python3Packages.versiontag: init at 1.2.0

fix(typo)

fix(typo)

fix(typo)
This commit is contained in:
Michael Colicchia 2021-08-26 21:53:55 +02:00
parent 4162b4c284
commit d60f63ec96
3 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchFromGitHub, git }:
buildPythonPackage rec {
pname = "versiontag";
version = "1.2.0";
src = fetchFromGitHub {
owner = "thelabnyc";
repo = "python-versiontag";
rev = "r${version}";
sha256 = "1axv2214ykgv5adajv10v2zy5fr9v77db54rkik6ja29p66zl90n";
};
checkInputs = [ git ];
pythonImportsCheck = [ "versiontag" ];
meta = with lib; {
description = "Python library designed to make accessing the current version number of your software easy";
homepage = "https://github.com/thelabnyc/python-versiontag";
license = licenses.isc;
maintainers = with maintainers; [ MaskedBelgian ];
};
}

View file

View file

@ -9204,6 +9204,8 @@ in {
versioneer = callPackage ../development/python-modules/versioneer { };
versiontag = callPackage ../development/python-modules/versiontag { };
versiontools = callPackage ../development/python-modules/versiontools { };
vertica-python = callPackage ../development/python-modules/vertica-python { };