1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 version = "0.5.0";
8 pname = "BespON";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "a75cd7e62746fb0fef9b98aa157a44f9ed2ef63e952f7ae4ec5b3c2892669187";
13 };
14
15 propagatedBuildInputs = [ ];
16 # upstream doesn't contain tests
17 doCheck = false;
18
19 pythonImportsCheck = [ "bespon" ];
20 meta = with stdenv.lib; {
21 description = "Encodes and decodes data in the BespON format.";
22 homepage = "https://github.com/gpoore/bespon_py";
23 license = licenses.lgpl3;
24 maintainers = with maintainers; [ synthetica ];
25 };
26
27}