3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #111393 from r-ryantm/auto-update/python3.7-fire

python37Packages.fire: 0.3.1 -> 0.4.0
This commit is contained in:
Mario Rodas 2021-01-31 07:09:44 -05:00 committed by GitHub
commit 4b54515a28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,13 +3,13 @@
buildPythonPackage rec {
pname = "fire";
version = "0.3.1";
version = "0.4.0";
src = fetchFromGitHub {
owner = "google";
repo = "python-fire";
rev = "v${version}";
sha256 = "0s5r6l39ck2scks54hmwwdf4lcihqqnqzjfx9lz2b67vxkajpwmc";
sha256 = "1caz6j2kdhj0kccrnqri6b4g2d6wzkkx8y9vxyvm7axvrwkv2vyn";
};
propagatedBuildInputs = [ six termcolor ] ++ lib.optional isPy27 enum34;