python3Packages.snuggs: 1.4.3 -> 1.4.7

This commit is contained in:
Jonathan Ringer 2019-10-29 01:52:32 -07:00 committed by Frederik Rietdijk
parent b76193a336
commit afce5f5ec4

View File

@ -1,23 +1,23 @@
{ buildPythonPackage, lib, fetchFromGitHub
, click, numpy, pyparsing
, pytest
, pytest, hypothesis
}:
buildPythonPackage rec {
pname = "snuggs";
version = "1.4.3";
version = "1.4.7";
# Pypi doesn't ship the tests, so we fetch directly from GitHub
src = fetchFromGitHub {
owner = "mapbox";
repo = pname;
rev = version;
sha256 = "198nbgkhlg4ik2i1r2cp900iqlairh2hnii2y8v5wy1qk3rv0s9g";
sha256 = "1p3lh9s2ylsnrzbs931y2vn7mp2y2xskgqmh767c9l1a33shfgwf";
};
propagatedBuildInputs = [ click numpy pyparsing ];
checkInputs = [ pytest ];
checkInputs = [ pytest hypothesis ];
checkPhase = "pytest test_snuggs.py";
meta = with lib; {