Merge pull request #204427 from fabaff/thriftpy2-bump

python310Packages.thriftpy2: 0.4.15 -> 0.4.16

authored by Fabian Affolter and committed by GitHub 7f66a409 67bd709d

+8 -4
+8 -4
pkgs/development/python-modules/thriftpy2/default.nix
··· 2 2 , buildPythonPackage 3 3 , cython 4 4 , fetchFromGitHub 5 - , pythonOlder 6 5 , ply 6 + , pythonOlder 7 7 , six 8 8 , tornado 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 12 pname = "thriftpy2"; 13 - version = "0.4.15"; 13 + version = "0.4.16"; 14 + format = "setuptools"; 14 15 15 16 disabled = pythonOlder "3.6"; 16 17 ··· 18 19 owner = "Thriftpy"; 19 20 repo = pname; 20 21 rev = "refs/tags/v${version}"; 21 - sha256 = "sha256-1X1roRFQgLJ+rrRuRlHMVtUdj2D68WGdxvid/0chsvI="; 22 + hash = "sha256-o+h38NREnh14M23gyF2X2UdW7/spmHFo0rqvkKnmSRQ="; 22 23 }; 23 24 24 25 nativeBuildInputs = [ ··· 34 35 # Not all needed files seems to be present 35 36 doCheck = false; 36 37 37 - pythonImportsCheck = [ "thriftpy2" ]; 38 + pythonImportsCheck = [ 39 + "thriftpy2" 40 + ]; 38 41 39 42 meta = with lib; { 40 43 description = "Python module for Apache Thrift"; 41 44 homepage = "https://github.com/Thriftpy/thriftpy2"; 45 + changelog = "https://github.com/Thriftpy/thriftpy2/blob/v${version}/CHANGES.rst"; 42 46 license = licenses.mit; 43 47 maintainers = with maintainers; [ fab ]; 44 48 };