about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/vcver/default.nix
blob: 503a8f7df7e011ba23dd883259e0fbd91c8ba8f8 (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, packaging
}:

buildPythonPackage rec {
  pname = "vcver";
  version = "0.2.12";

  src = fetchFromGitHub {
    owner = "toumorokoshi";
    repo = "vcver-python";
    rev = "c5d8a6f1f0e49bb25f5dbb07312e42cb4da096d6";
    sha256 = "1cvgs70jf7ki78338zaglaw2dkvyndmx15ybd6k4zqwwsfgk490b";
  };

  propagatedBuildInputs = [
    packaging
  ];

  # circular dependency on test tool uranium https://pypi.org/project/uranium/
  doCheck = false;

  pythonImportsCheck = [ "vcver" ];

  meta = with lib; {
    description = "Reference Implementation of vcver";
    homepage = "https://github.com/toumorokoshi/vcver-python";
    license = licenses.mit;
    maintainers = with maintainers; [ hexa ];
  };
}