Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / cbor / default.nix
blob551a0567ce4bcb2cd6e553e79e22c50c612d4ee6
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "cbor";
5   version = "1.0.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "1dmv163cnslyqccrybkxn0c9s1jk1mmafmgxv75iamnz5lk5l8hk";
11   };
13   # Tests are excluded from PyPI and four unit tests are also broken:
14   # https://github.com/brianolson/cbor_py/issues/6
15   doCheck = false;
17   meta = with lib; {
18     homepage = "https://github.com/brianolson/cbor_py";
19     description = "Concise Binary Object Representation (CBOR) library";
20     license = licenses.asl20;
21     maintainers = with maintainers; [ oxzi ];
22   };