mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
a76c135d50
The project is licensed under a 3-clause BSD license, not LGPL3.
28 lines
599 B
Nix
28 lines
599 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.6.0";
|
|
pname = "BespON";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2f2bda67fea8ee95c8aa7e885835ab88bdbfa392a94077ce1c9d29017420ce7a";
|
|
};
|
|
|
|
propagatedBuildInputs = [ ];
|
|
# upstream doesn't contain tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "bespon" ];
|
|
meta = with lib; {
|
|
description = "Encodes and decodes data in the BespON format.";
|
|
homepage = "https://github.com/gpoore/bespon_py";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ synthetica ];
|
|
};
|
|
|
|
}
|