lol

python3Packages.thriftpy2: init at 0.4.14

+47
+45
pkgs/development/python-modules/thriftpy2/default.nix
··· 1 + { lib 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.14"; 14 + 15 + disabled = pythonOlder "3.6"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "Thriftpy"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + sha256 = "17f57vsbym4c9yax128bhrwg2zjxcsgl3ja6422y8hyb38v5mdc3"; 22 + }; 23 + 24 + nativeBuildInputs = [ 25 + cython 26 + ]; 27 + 28 + propagatedBuildInputs = [ 29 + ply 30 + six 31 + tornado 32 + ]; 33 + 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 + }; 45 + }
+2
pkgs/top-level/python-packages.nix
··· 8897 8897 8898 8898 thrift = callPackage ../development/python-modules/thrift { }; 8899 8899 8900 + thriftpy2 = callPackage ../development/python-modules/thriftpy2 { }; 8901 + 8900 8902 thumborPexif = callPackage ../development/python-modules/thumborpexif { }; 8901 8903 8902 8904 tkinter = let