pythonPackages.mutag: refactor move to python-modules
This commit is contained in:
parent
0bca111a36
commit
bd64776230
2 changed files with 28 additions and 17 deletions
27
pkgs/development/python-modules/mutag/default.nix
Normal file
27
pkgs/development/python-modules/mutag/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchgit
|
||||||
|
, isPy3k
|
||||||
|
, pyparsing
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "mutag-0.0.2-2ffa0258ca";
|
||||||
|
disabled = ! isPy3k;
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/aroig/mutag.git";
|
||||||
|
sha256 = "0axdnwdypfd74a9dnw0g25m16xx1yygyl828xy0kpj8gyqdc6gb1";
|
||||||
|
rev = "2ffa0258cadaf79313241f43bf2c1caaf197d9c2";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pyparsing ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/aroig/mutag;
|
||||||
|
description = "A script to change email tags in a mu indexed maildir";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -2853,23 +2853,7 @@ in {
|
||||||
|
|
||||||
musicbrainzngs = callPackage ../development/python-modules/musicbrainzngs { };
|
musicbrainzngs = callPackage ../development/python-modules/musicbrainzngs { };
|
||||||
|
|
||||||
mutag = buildPythonPackage rec {
|
mutag = callPackage ../development/python-modules/mutag { };
|
||||||
disabled = ! isPy3k;
|
|
||||||
name = "mutag-0.0.2-2ffa0258ca";
|
|
||||||
src = pkgs.fetchgit {
|
|
||||||
url = "https://github.com/aroig/mutag.git";
|
|
||||||
sha256 = "0axdnwdypfd74a9dnw0g25m16xx1yygyl828xy0kpj8gyqdc6gb1";
|
|
||||||
rev = "2ffa0258cadaf79313241f43bf2c1caaf197d9c2";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ pyparsing ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = https://github.com/aroig/mutag;
|
|
||||||
license = licenses.gpl3;
|
|
||||||
maintainers = with maintainers; [ ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
mutagen = callPackage ../development/python-modules/mutagen { };
|
mutagen = callPackage ../development/python-modules/mutagen { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue