2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2019-11-27 10:30:51 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-02-08 07:31:32 +00:00
|
|
|
version = "0.6.0";
|
2019-11-27 10:30:51 +00:00
|
|
|
pname = "BespON";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-08 07:31:32 +00:00
|
|
|
sha256 = "2f2bda67fea8ee95c8aa7e885835ab88bdbfa392a94077ce1c9d29017420ce7a";
|
2019-11-27 10:30:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ ];
|
|
|
|
# upstream doesn't contain tests
|
|
|
|
doCheck = false;
|
2020-08-25 03:07:09 +01:00
|
|
|
|
2019-11-27 10:30:51 +00:00
|
|
|
pythonImportsCheck = [ "bespon" ];
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-11-27 10:30:51 +00:00
|
|
|
description = "Encodes and decodes data in the BespON format.";
|
|
|
|
homepage = "https://github.com/gpoore/bespon_py";
|
2021-02-08 16:36:45 +00:00
|
|
|
license = licenses.bsd3;
|
2019-11-27 10:30:51 +00:00
|
|
|
maintainers = with maintainers; [ synthetica ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|