3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.justbytes: init at 0.15

This commit is contained in:
Nick Cao 2022-08-01 23:37:34 +08:00 committed by Jonathan Ringer
parent c75a1700da
commit 0e05c17ef1
2 changed files with 28 additions and 0 deletions
pkgs
development/python-modules/justbytes
top-level

View file

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

View file

@ -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 { };