depot/third_party/nixpkgs/pkgs/development/python-modules/libversion/default.nix
Default email 75ca762b89 Project import generated by Copybara.
GitOrigin-RevId: 29b0d4d0b600f8f5dd0b86e3362a33d4181938f9
2021-03-09 11:18:52 +08:00

23 lines
684 B
Nix

{ lib, buildPythonPackage, fetchPypi, pkg-config, libversion, pythonOlder }:
buildPythonPackage rec {
pname = "libversion";
version = "1.2.2";
src = fetchPypi {
inherit pname version;
sha256 = "cf9ef702d0bc750f0ad44a2cffe8ebd83cd356b92cc25f767846509f84ea7e73";
};
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 ];
};
}