pythonPackages.fire: 0.1.3 -> 0.2.1

This commit is contained in:
Michiel Leenaars 2019-08-27 16:56:39 +02:00
parent b40ee82685
commit 6468d465ed

View File

@ -1,18 +1,18 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, fetchpatch, six, hypothesis, mock { stdenv, buildPythonPackage, fetchFromGitHub, fetchpatch, six, hypothesis, mock
, python-Levenshtein, pytest }: , python-Levenshtein, pytest, termcolor, isPy27, enum34 }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "fire"; pname = "fire";
version = "0.1.3"; version = "0.2.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "google"; owner = "google";
repo = "python-fire"; repo = "python-fire";
rev = "v${version}"; rev = "v${version}";
sha256 = "0kdcmzr3sgzjsw5fmvdylgrn8akqjbs433jbgqzp498njl9cc6qx"; sha256 = "1r6cmihafd7mb6j3mvgk251my6ckb0sqqj1l2ny2azklv175b38a";
}; };
propagatedBuildInputs = [ six ]; propagatedBuildInputs = [ six termcolor ] ++ stdenv.lib.optional isPy27 enum34;
checkInputs = [ hypothesis mock python-Levenshtein pytest ]; checkInputs = [ hypothesis mock python-Levenshtein pytest ];
@ -20,14 +20,6 @@ buildPythonPackage rec {
py.test py.test
''; '';
patches = [
# Add Python 3.7 support. Remove with the next release
(fetchpatch {
url = "https://github.com/google/python-fire/commit/668007ae41391f5964870b4597e41493a936a11e.patch";
sha256 = "0rf7yzv9qx66zfmdggfz478z37fi4rwx4hlh3dk1065sx5rfksi0";
})
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A library for automatically generating command line interfaces"; description = "A library for automatically generating command line interfaces";
longDescription = '' longDescription = ''