Merge pull request #135668 from MaskedBelgian/master

Python3Packages.versiontag: init at 1.2.0
launchpad/nixpkgs/master
Fabian Affolter 3 years ago committed by GitHub
commit dced14bb29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      maintainers/maintainer-list.nix
  2. 24
      pkgs/development/python-modules/versiontag/default.nix
  3. 0
      pkgs/development/python-modules/{}
  4. 2
      pkgs/top-level/python-packages.nix

@ -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;

@ -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 ];
};
}

@ -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…
Cancel
Save