1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/development/python-modules/libversion/default.nix

24 lines
678 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pkgconfig, libversion, pythonOlder }:
2018-05-27 17:14:00 +01:00
buildPythonPackage rec {
pname = "libversion";
version = "1.1.2";
2018-05-27 17:14:00 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "040adjp5xjr4vwz3x2mspkymlcmljvqvacr88aw0jijq1h6fm59c";
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 ];
};
}