nixpkgs/pkgs/development/python-modules/libversion/default.nix
R. RyanTM f7054527b2 python37Packages.libversion: 1.1.3 -> 1.1.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-libversion/versions
2019-07-02 20:04:15 +02:00

24 lines
678 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, pkgconfig, libversion, pythonOlder }:
buildPythonPackage rec {
pname = "libversion";
version = "1.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "0xp0wv4s1537s0iqa1ih3kfh1p70s7d1fkwhvrnbj8m98yjij84q";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libversion ];
disabled = pythonOlder "3.6";
meta = with stdenv.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 ];
};
}