summary refs log tree commit diff
path: root/pkgs/development/python-modules/libversion/default.nix
blob: 2edc9211d928de9d8620a81bf540af45b5c3bd01 (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
{ lib, buildPythonPackage, fetchPypi, pkg-config, libversion, pythonOlder }:

buildPythonPackage rec {
  pname = "libversion";
  version = "1.2.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1h8x9hglrqi03f461lhw3wwz23zs84dgw7hx4laxcmyrgvyzvcq1";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libversion ];

  disabled = pythonOlder "3.6";

  meta = with lib; {
    homepage = "https://github.com/repology/py-libversion";
    description = "Python bindings for libversion, which provides fast, powerful and correct generic version string comparison algorithm";
    license = licenses.mit;
    maintainers = [ maintainers.ryantm ];
  };
}