mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-12 16:02:43 +00:00
19 lines
397 B
Nix
19 lines
397 B
Nix
|
{ lib, buildPythonPackage, fetchPypi }:
|
||
|
buildPythonPackage rec {
|
||
|
pname = "cbor2";
|
||
|
version = "5.2.0";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
sha256 = "1mmmncfbsx7cbdalcrsagp9hx7wqfawaz9361gjkmsk3lp6chd5w";
|
||
|
inherit pname version;
|
||
|
};
|
||
|
|
||
|
doCheck = false;
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = https://github.com/agronholm/cbor2;
|
||
|
description = "CBOR encoder/decoder";
|
||
|
license = licenses.mit;
|
||
|
};
|
||
|
}
|