python-nixpart: Move into tools/filesystems/.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
231b182c36
commit
513de0ff57
21
pkgs/tools/filesystems/nixpart/default.nix
Normal file
21
pkgs/tools/filesystems/nixpart/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchurl, buildPythonPackage, blivet }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "nixpart-${version}";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/aszlig/nixpart/archive/v${version}.tar.gz";
|
||||||
|
sha256 = "1z94h76jn9igksgr84wwbi03fjamwb15hg432x189kgsld1ark4n";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ blivet ];
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "NixOS storage manager/partitioner";
|
||||||
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.aszlig ];
|
||||||
|
};
|
||||||
|
}
|
@ -65,6 +65,8 @@ pythonPackages = python.modules // rec {
|
|||||||
pylabQtSupport = false;
|
pylabQtSupport = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
nixpart = callPackage ../tools/filesystems/nixpart { };
|
||||||
|
|
||||||
pil = import ../development/python-modules/pil {
|
pil = import ../development/python-modules/pil {
|
||||||
inherit (pkgs) fetchurl stdenv libjpeg zlib freetype;
|
inherit (pkgs) fetchurl stdenv libjpeg zlib freetype;
|
||||||
inherit python buildPythonPackage;
|
inherit python buildPythonPackage;
|
||||||
@ -2909,26 +2911,6 @@ pythonPackages = python.modules // rec {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
nixpart = buildPythonPackage rec {
|
|
||||||
name = "nixpart-${version}";
|
|
||||||
version = "0.2.0";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://github.com/aszlig/nixpart/archive/v${version}.tar.gz";
|
|
||||||
sha256 = "1z94h76jn9igksgr84wwbi03fjamwb15hg432x189kgsld1ark4n";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = [ blivet ];
|
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "NixOS storage manager/partitioner";
|
|
||||||
license = pkgs.lib.licenses.gpl2Plus;
|
|
||||||
maintainers = [ stdenv.lib.maintainers.aszlig ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
nose = buildPythonPackage rec {
|
nose = buildPythonPackage rec {
|
||||||
name = "nose-1.2.1";
|
name = "nose-1.2.1";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user