python3.pkgs.libversion: init at 1.0.0
This commit is contained in:
parent
0163b98641
commit
05ea75f5c0
23
pkgs/development/python-modules/libversion/default.nix
Normal file
23
pkgs/development/python-modules/libversion/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, python, pkgconfig, libversion, pythonOlder }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "libversion";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "18hhn7b7458lybs8z8ckh0idm7a2g4c4b5v2p9rr0lb618rchvds";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -16254,6 +16254,10 @@ EOF
|
||||
};
|
||||
};
|
||||
|
||||
libversion = callPackage ../development/python-modules/libversion {
|
||||
inherit (pkgs) libversion;
|
||||
};
|
||||
|
||||
libvirt = callPackage ../development/python-modules/libvirt {
|
||||
inherit (pkgs) libvirt;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user