pythonPackages.yarg: init at 0.1.9
This commit is contained in:
parent
2581d044fb
commit
14840a99b1
27
pkgs/development/python-modules/yarg/default.nix
Normal file
27
pkgs/development/python-modules/yarg/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -748,6 +748,8 @@ in {
|
|||||||
|
|
||||||
WazeRouteCalculator = callPackage ../development/python-modules/WazeRouteCalculator { };
|
WazeRouteCalculator = callPackage ../development/python-modules/WazeRouteCalculator { };
|
||||||
|
|
||||||
|
yarg = callPackage ../development/python-modules/yarg { };
|
||||||
|
|
||||||
# packages defined here
|
# packages defined here
|
||||||
|
|
||||||
aafigure = callPackage ../development/python-modules/aafigure { };
|
aafigure = callPackage ../development/python-modules/aafigure { };
|
||||||
|
Loading…
Reference in New Issue
Block a user