mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
35 lines
977 B
Nix
35 lines
977 B
Nix
{ lib, fetchFromGitHub, beets, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication {
|
|
pname = "beets-copyartifacts";
|
|
version = "unstable-2020-02-15";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "beets-copyartifacts";
|
|
owner = "adammillerio";
|
|
rev = "85eefaebf893cb673fa98bfde48406ec99fd1e4b";
|
|
sha256 = "sha256-bkT2BZZ2gdcacgvyrVe2vMrOMV8iMAm8Q5xyrZzyqU0=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i -e '/install_requires/,/\]/{/beets/d}' setup.py
|
|
sed -i -e '/namespace_packages/d' setup.py
|
|
printf 'from pkgutil import extend_path\n__path__ = extend_path(__path__, __name__)\n' >beetsplug/__init__.py
|
|
'';
|
|
|
|
pytestFlagsArray = [ "-r fEs" ];
|
|
|
|
checkInputs = with python3Packages; [
|
|
pytestCheckHook
|
|
beets
|
|
six
|
|
];
|
|
|
|
meta = {
|
|
description = "Beets plugin to move non-music files during the import process";
|
|
homepage = "https://github.com/sbarakat/beets-copyartifacts";
|
|
license = lib.licenses.mit;
|
|
inherit (beets.meta) platforms;
|
|
};
|
|
}
|