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,28 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, mock
}:
buildPythonPackage rec {
version = "0.5.1";
pname = "humanize";
src = fetchPypi {
inherit pname version;
sha256 = "a43f57115831ac7c70de098e6ac46ac13be00d69abbf60bdcac251344785bb19";
};
buildInputs = [ mock ];
doCheck = false;
meta = with stdenv.lib; {
description = "Python humanize utilities";
homepage = https://github.com/jmoiron/humanize;
license = licenses.mit;
maintainers = with maintainers; [ ];
platforms = platforms.linux; # can only test on linux
};
}