python-nixpart: Update to new version 0.2.0.

This introduces the ability to mount filesystems (only). Also, the description
is now less kickstart specific as in the long term we want to move away from
kickstart syntax to Nix attribute sets.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig
2013-07-01 18:59:24 +02:00
parent e2e77c641a
commit 168115f610

View File

@@ -2805,11 +2805,11 @@ pythonPackages = python.modules // rec {
nixpart = buildPythonPackage rec {
name = "nixpart-${version}";
version = "0.1";
version = "0.2.0";
src = fetchurl {
url = "https://github.com/aszlig/nixpart/archive/v${version}.tar.gz";
sha256 = "1gyk260qnv14w94f0ljfra4mmigq9i6cx0gy4ppf3fia5wfj2a6j";
sha256 = "1z94h76jn9igksgr84wwbi03fjamwb15hg432x189kgsld1ark4n";
};
propagatedBuildInputs = [ blivet ];
@@ -2817,7 +2817,7 @@ pythonPackages = python.modules // rec {
doCheck = false;
meta = {
description = "NixOS Anaconda Kickstart helper";
description = "NixOS storage manager/partitioner";
license = pkgs.lib.licenses.gpl2Plus;
maintainers = [ stdenv.lib.maintainers.aszlig ];
};