about summary refs log tree commit diff
path: root/pkgs/development/python-modules/semantic-version/default.nix
blob: 26f33ea2a36826702082f12eea5af0a18ebeb6c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
  lib,
  fetchPypi,
  buildPythonPackage,
  pythonOlder,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "semantic-version";
  version = "2.10.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    pname = "semantic_version";
    inherit version;
    hash = "sha256-vau20zaZjLs3jUuds6S1ah4yNXAdwF6iaQ2amX7VBBw=";
  };

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "semantic_version" ];

  meta = with lib; {
    description = "Library implementing the 'SemVer' scheme";
    homepage = "https://github.com/rbarrois/python-semanticversion/";
    license = licenses.bsd2;
    maintainers = with maintainers; [
      layus
      makefu
    ];
  };
}