mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
31 lines
617 B
Nix
31 lines
617 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "thrift";
|
|
version = "0.16.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-K1tkiPze0h+dMSqiPJ/2oBldD2ribdvVrZ4+Jd/BRAg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
# No tests. Breaks when not disabling.
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "thrift" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python bindings for the Apache Thrift RPC system";
|
|
homepage = "https://thrift.apache.org/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ hbunke ];
|
|
};
|
|
}
|