Merge pull request #52647 from PsyanticY/pipreqs-2

pipreqs: init at 0.4.9 | pythonPackage.yarg: init at 0.1.9
This commit is contained in:
Robert Schütz
2019-01-15 00:10:40 +01:00
committed by GitHub
5 changed files with 56 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
{ lib, buildPythonPackage, fetchFromGitHub, requests, nose, mock }:
buildPythonPackage rec {
pname = "yarg";
version = "0.1.9";
src = fetchFromGitHub {
owner = "kura";
repo = pname;
rev = version;
sha256 = "1isq02s404fp9whkm8w2kvb2ik1sz0r258iby0q532zw81lga0d0";
};
propagatedBuildInputs = [ requests ];
checkInputs = [ nose mock ];
checkPhase = ''
nosetests
'';
meta = with lib; {
description = "An easy to use PyPI client";
homepage = https://yarg.readthedocs.io;
license = licenses.mit;
maintainers = with maintainers; [ psyanticy ];
};
}