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