mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-19 06:10:03 +00:00
python3Packages.pycmus: init at 0.1.1
This commit is contained in:
42
pkgs/development/python-modules/pycmus/default.nix
Normal file
42
pkgs/development/python-modules/pycmus/default.nix
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pbr,
|
||||
setuptools,
|
||||
six,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pycmus";
|
||||
version = "0.1.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-Wk9J/XjKZB13o8QmdByVWHcAdfNOicwLaH2Sh4qJcIw=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
pbr
|
||||
setuptools
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
six
|
||||
];
|
||||
|
||||
# No tests available
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pycmus"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Python library for sending commands to the cmus music player";
|
||||
homepage = "https://github.com/mtreinish/pycmus";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
}
|
||||
@@ -12597,6 +12597,8 @@ self: super: with self; {
|
||||
|
||||
pycmarkgfm = callPackage ../development/python-modules/pycmarkgfm { };
|
||||
|
||||
pycmus = callPackage ../development/python-modules/pycmus { };
|
||||
|
||||
pycocotools = callPackage ../development/python-modules/pycocotools { };
|
||||
|
||||
pycodestyle = callPackage ../development/python-modules/pycodestyle { };
|
||||
|
||||
Reference in New Issue
Block a user