anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / cbor / default.nix
blob63d9ddfc70096b2573a507add48d4525f8e70a4a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "cbor";
9   version = "1.0.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1dmv163cnslyqccrybkxn0c9s1jk1mmafmgxv75iamnz5lk5l8hk";
15   };
17   # Tests are excluded from PyPI and four unit tests are also broken:
18   # https://github.com/brianolson/cbor_py/issues/6
19   doCheck = false;
21   meta = with lib; {
22     homepage = "https://github.com/brianolson/cbor_py";
23     description = "Concise Binary Object Representation (CBOR) library";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ oxzi ];
26   };