nixpkgs/pkgs/development/python-modules/pcpp/default.nix
2023-09-27 15:33:53 +02:00

25 lines
533 B
Nix

{ buildPythonPackage
, fetchFromGitHub
, lib
}:
buildPythonPackage rec {
pname = "pcpp";
version = "1.30";
src = fetchFromGitHub {
owner = "ned14";
repo = "pcpp";
rev = "refs/tags/v${version}";
sha256 = "sha256-Fs+CMV4eRKcB+KdV93ncgcqaMnO5etnMY/ivmSJh3Wc=";
fetchSubmodules = true;
};
meta = with lib; {
homepage = "https://github.com/ned14/pcpp";
description = "A C99 preprocessor written in pure Python";
license = licenses.bsd0;
maintainers = with maintainers; [ rakesh4g ];
};
}