Commit 0e05c17e authored by Nick Cao's avatar Nick Cao Committed by Jonathan Ringer
Browse files

python3Packages.justbytes: init at 0.15

parent c75a1700
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, justbases
, hypothesis
}:

buildPythonPackage rec {
  pname = "justbytes";
  version = "0.15";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-qrMO9X0v5yYjeWa72mogegR+ii8tCi+o7qZ+Aff2wZQ=";
  };

  propagatedBuildInputs = [ justbases ];
  checkInputs = [ hypothesis ];

  meta = with lib; {
    description = "computing with and displaying bytes";
    homepage = "https://pythonhosted.org/justbytes";
    license = licenses.lgpl2Plus;
    maintainers = with maintainers; [ nickcao ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -4709,6 +4709,8 @@ in {

  justbases = callPackage ../development/python-modules/justbases { };

  justbytes = callPackage ../development/python-modules/justbytes { };

  jwcrypto = callPackage ../development/python-modules/jwcrypto { };

  jxmlease = callPackage ../development/python-modules/jxmlease { };