Merge pull request #112058 from r-ryantm/auto-update/python3.7-helper
python37Packages.helper: 2.4.2 -> 2.5.0
This commit is contained in:
commit
2f5b03627e
@ -1,19 +1,35 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, pyyaml, mock }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pyyaml
|
||||||
|
, pytestCheckHook
|
||||||
|
, mock
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "helper";
|
pname = "helper";
|
||||||
version = "2.4.2";
|
version = "2.5.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchFromGitHub {
|
||||||
inherit pname version;
|
owner = "gmr";
|
||||||
sha256 = "0p56dvjpaz9wnr0ik2wmvgqjf9ji180bhjky7q272l5dan94lgd6";
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0zypjv8rncvrsgl200v7d3bn08gs48dwqvgamfqv71h07cj6zngp";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ mock ];
|
propagatedBuildInputs = [
|
||||||
propagatedBuildInputs = [ pyyaml ];
|
pyyaml
|
||||||
|
];
|
||||||
|
|
||||||
# No tests in the pypi tarball
|
checkInputs = [
|
||||||
doCheck = false;
|
pytestCheckHook
|
||||||
|
mock
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"helper"
|
||||||
|
"helper.config"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Development library for quickly writing configurable applications and daemons";
|
description = "Development library for quickly writing configurable applications and daemons";
|
||||||
|
Loading…
Reference in New Issue
Block a user