forked from mirrors/nixpkgs
Merge pull request #135668 from MaskedBelgian/master
Python3Packages.versiontag: init at 1.2.0
This commit is contained in:
commit
dced14bb29
|
@ -6706,6 +6706,12 @@
|
|||
githubId = 775189;
|
||||
name = "Jordi Masip";
|
||||
};
|
||||
MaskedBelgian = {
|
||||
email = "michael.colicchia@imio.be";
|
||||
github = "MaskedBelgian";
|
||||
githubId = 29855073;
|
||||
name = "Michael Colicchia";
|
||||
};
|
||||
matdsoupe = {
|
||||
github = "matdsoupe";
|
||||
githubId = 44469426;
|
||||
|
|
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
|
@ -9220,6 +9220,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 a new issue