libvirt: switch who makes assertions about whose version

Previously, the native libvirt package was making an assertion that
the dependent Python package had a compatible version. This commit
switches that so that the Python package makes the assertion, since
it makes more sense to me to have a child package making an
assertion about its parent than vice versa.
This commit is contained in:
Dan Peebles
2015-12-24 19:59:44 +00:00
parent c26062884b
commit 8c42b26fa2
2 changed files with 5 additions and 8 deletions

View File

@@ -1,16 +1,12 @@
{ stdenv, fetchurl, pkgconfig, libxml2, gnutls, devicemapper, perl, python
, iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext
, libtasn1, ebtables, libgcrypt, yajl, makeWrapper, pmutils, libcap_ng
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl
, pythonPackages, perlPackages
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages
}:
let version = "1.2.19"; in
assert version == pythonPackages.libvirt.version;
stdenv.mkDerivation rec {
name = "libvirt-${version}";
version = "1.2.19";
src = fetchurl {
url = "http://libvirt.org/sources/${name}.tar.gz";