summary refs log tree commit diff
path: root/pkgs/development/python-modules/vcversioner/default.nix
blob: 7d73a6e812ddef0fdd1da88ee50ab1dd0aa42949 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "vcversioner";
  version = "2.16.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "16z10sm78jd7ca3jbkgc3q5i8a8q7y1h21q1li21yy3rlhbhrrns";
  };

  meta = with lib; {
    description = "take version numbers from version control";
    homepage = "https://github.com/habnabit/vcversioner";
    license = licenses.isc;
  };
}