pythonPackages.helper: 2.4.1 -> 2.4.2 | cleanup

This commit is contained in:
nagato.pain
2018-10-13 10:12:58 -07:00
parent 0f5f873e93
commit 994b84d816
2 changed files with 26 additions and 25 deletions

View File

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