forked from mirrors/nixpkgs
python3Packages.justbytes: init at 0.15
This commit is contained in:
parent
c75a1700da
commit
0e05c17ef1
pkgs
26
pkgs/development/python-modules/justbytes/default.nix
Normal file
26
pkgs/development/python-modules/justbytes/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue