about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/bespon/default.nix
blob: da6820ef6ecc2af973c8a014638714a5a12334f6 (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
, 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 ];
  };

}