python3Packages.bytecode: init at 0.11.0

This commit is contained in:
Arnout Engelen 2020-07-14 08:22:01 +02:00 committed by Jon
parent 6f0a715ad2
commit cb62bb38b2
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ 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 ];
};
}

View file

@ -549,6 +549,8 @@ in {
build = callPackage ../development/python-modules/build { };
bytecode = callPackage ../development/python-modules/bytecode { };
ciso8601 = callPackage ../development/python-modules/ciso8601 { };
deepdiff = callPackage ../development/python-modules/deepdiff { };