depot/third_party/nixpkgs/pkgs/development/python-modules/bytecode/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

29 lines
634 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, aenum
}:
buildPythonPackage rec {
pname = "bytecode";
version = "0.11.0";
src = fetchFromGitHub {
owner = "vstinner";
repo = pname;
rev = version;
sha256 = "097k83zr0z71pha7bafzhs4ink174wk9ls2883bic274rihsnc5r";
};
disabled = pythonOlder "3.5";
propagatedBuildInputs = lib.optionals (pythonOlder "3.6") [ aenum ];
meta = with lib; {
homepage = "https://github.com/vstinner/bytecode";
description = "Python module to generate and modify bytecode";
license = licenses.mit;
maintainers = with maintainers; [ raboof ];
};
}