summary refs log tree commit diff
path: root/pkgs/development/python-modules/bespon/default.nix
blob: 555a0a48758115fa1b2a66a7e24164278c561a41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  version = "0.5.0";
  pname = "BespON";

  src = fetchPypi {
    inherit pname version;
    sha256 = "a75cd7e62746fb0fef9b98aa157a44f9ed2ef63e952f7ae4ec5b3c2892669187";
  };

  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.lgpl3;
    maintainers = with maintainers; [ synthetica ];
  };

}