nixpkgs/pkgs/development/python-modules/libversion/default.nix

24 lines
684 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pkg-config, libversion, pythonOlder }:
2018-05-27 16:14:00 +00:00
buildPythonPackage rec {
pname = "libversion";
version = "1.2.2";
2018-05-27 16:14:00 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "cf9ef702d0bc750f0ad44a2cffe8ebd83cd356b92cc25f767846509f84ea7e73";
2018-05-27 16:14:00 +00:00
};
nativeBuildInputs = [ pkg-config ];
2018-05-27 16:14:00 +00:00
buildInputs = [ libversion ];
disabled = pythonOlder "3.6";
meta = with lib; {
homepage = "https://github.com/repology/py-libversion";
2018-05-27 16:14:00 +00:00
description = "Python bindings for libversion, which provides fast, powerful and correct generic version string comparison algorithm";
license = licenses.mit;
maintainers = [ maintainers.ryantm ];
};
}