Skip to content

Commit

Permalink
pythonPackages.us: fix build
Browse files Browse the repository at this point in the history
Required jellyfish==0.5.6 but we have 0.6.1. Loosen requirements.
  • Loading branch information
xeji committed Sep 10, 2018
1 parent f38e8c0 commit a7166cd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkgs/development/python-modules/us/default.nix
Expand Up @@ -15,6 +15,13 @@ buildPythonPackage rec {
sha256 = "1niglalkp7pinibzbxjdz9mxx9qmwkrh8884dag3kr72cfkrpp09";
};

# Upstream requires jellyfish==0.5.6 but we have 0.6.1
postPatch = ''
substituteInPlace setup.py --replace "jellyfish==" "jellyfish>="
'';

doCheck = false; # pypi version doesn't include tests

meta = {
description = "A package for easily working with US and state metadata";
longDescription = ''
Expand Down

0 comments on commit a7166cd

Please sign in to comment.