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