Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / bespon / default.nix
blobda6820ef6ecc2af973c8a014638714a5a12334f6
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   version = "0.6.0";
8   pname = "BespON";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "2f2bda67fea8ee95c8aa7e885835ab88bdbfa392a94077ce1c9d29017420ce7a";
13   };
15   propagatedBuildInputs = [ ];
16   # upstream doesn't contain tests
17   doCheck = false;
19   pythonImportsCheck = [ "bespon" ];
20   meta = with lib; {
21     description = "Encodes and decodes data in the BespON format.";
22     homepage = "https://github.com/gpoore/bespon_py";
23     license = licenses.bsd3;
24     maintainers = with maintainers; [ synthetica ];
25   };