Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.snuggs: 1.4.3 -> 1.4.7

authored by Jonathan Ringer and committed by Frederik Rietdijk afce5f5e b76193a3

+4 -4
+4 -4
pkgs/development/python-modules/snuggs/default.nix
··· 1 1 { buildPythonPackage, lib, fetchFromGitHub 2 2 , click, numpy, pyparsing 3 - , pytest 3 + , pytest, hypothesis 4 4 }: 5 5 6 6 buildPythonPackage rec { 7 7 pname = "snuggs"; 8 - version = "1.4.3"; 8 + version = "1.4.7"; 9 9 10 10 # Pypi doesn't ship the tests, so we fetch directly from GitHub 11 11 src = fetchFromGitHub { 12 12 owner = "mapbox"; 13 13 repo = pname; 14 14 rev = version; 15 - sha256 = "198nbgkhlg4ik2i1r2cp900iqlairh2hnii2y8v5wy1qk3rv0s9g"; 15 + sha256 = "1p3lh9s2ylsnrzbs931y2vn7mp2y2xskgqmh767c9l1a33shfgwf"; 16 16 }; 17 17 18 18 propagatedBuildInputs = [ click numpy pyparsing ]; 19 19 20 - checkInputs = [ pytest ]; 20 + checkInputs = [ pytest hypothesis ]; 21 21 checkPhase = "pytest test_snuggs.py"; 22 22 23 23 meta = with lib; {