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

python3Packages.stone: 3.3.6 -> 3.3.8

https://github.com/dropbox/stone/releases/tag/v3.3.8

+2 -19
+2 -19
pkgs/development/python-modules/stone/default.nix
··· 1 1 { 2 2 buildPythonPackage, 3 3 fetchFromGitHub, 4 - fetchpatch, 5 4 lib, 6 5 mock, 7 6 packaging, ··· 14 13 15 14 buildPythonPackage rec { 16 15 pname = "stone"; 17 - version = "3.3.6"; 16 + version = "3.3.8"; 18 17 pyproject = true; 19 18 20 19 disabled = pythonOlder "3.7"; 21 20 22 - patches = [ 23 - # fix distutils issue 24 - # fix versions in tests to conform pep 440 25 - # See https://github.com/dropbox/stone/pull/334 26 - (fetchpatch { 27 - name = "no-distutils.patch"; 28 - url = "https://github.com/dropbox/stone/commit/f772d8d3b7e2ce62b14b4fb208a478bc8e54c7f2.patch"; 29 - hash = "sha256-SH4gG5S13n/pXppm62LvH9poGfeQGGonW7bkzdYh73Q="; 30 - }) 31 - (fetchpatch { 32 - name = "fix-test-pep-440.patch"; 33 - url = "https://github.com/dropbox/stone/commit/f36de56b1f87eae61829258b2f16aa8319bbcc5c.patch"; 34 - hash = "sha256-sBJukNk02RmQQza1qhLAkyx1OJRck0/zQOeRaXD9tkY="; 35 - }) 36 - ]; 37 - 38 21 src = fetchFromGitHub { 39 22 owner = "dropbox"; 40 23 repo = "stone"; 41 24 rev = "refs/tags/v${version}"; 42 - hash = "sha256-Og0hUUCCd9wRdHUhZBl62rDAunP2Bph5COsCw/T1kUA="; 25 + hash = "sha256-W+wRVWPaAzhdHMVE54GEJC/YJqYZVJhwFDWWSMKUPdw="; 43 26 }; 44 27 45 28 postPatch = ''