pythonPackages.gmusicapi: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-15 23:36:16 -04:00
committed by Frederik Rietdijk
parent 815fdff2ff
commit 348b2fb38c
8 changed files with 207 additions and 31 deletions

View File

@@ -0,0 +1,29 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, mock
, pyyaml
}:
buildPythonPackage rec {
pname = "helper";
version = "2.4.1";
src = fetchPypi {
inherit pname version;
sha256 = "4e33dde42ad4df30fb7790689f93d77252cff26a565610d03ff2e434865a53a2";
};
buildInputs = [ mock ];
propagatedBuildInputs = [ pyyaml ];
# No tests
doCheck = false;
meta = with stdenv.lib; {
description = "Development library for quickly writing configurable applications and daemons";
homepage = https://helper.readthedocs.org/;
license = licenses.bsd3;
};
}