2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, pkgconfig, libversion, pythonOlder }:
|
2018-05-27 17:14:00 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "libversion";
|
2019-09-28 12:37:05 +01:00
|
|
|
version = "1.2.0";
|
2018-05-27 17:14:00 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-09-28 12:37:05 +01:00
|
|
|
sha256 = "1p3snjlsg11vhba8h286h19kn6azlxbywg9f6rdhj8sfraccqlmk";
|
2018-05-27 17:14:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|