Python3Packages.versiontag: init at 1.2.0
fix(typo) fix(typo) fix(typo)
This commit is contained in:
parent
4162b4c284
commit
d60f63ec96
24
pkgs/development/python-modules/versiontag/default.nix
Normal file
24
pkgs/development/python-modules/versiontag/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
0
pkgs/development/python-modules/{}
Normal file
0
pkgs/development/python-modules/{}
Normal 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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user