mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-26 16:11:08 +00:00
21 lines
457 B
Nix
21 lines
457 B
Nix
{ lib, buildPythonPackage, fetchPypi , setuptools_scm }:
|
|
buildPythonPackage rec {
|
|
pname = "cbor2";
|
|
version = "5.2.0";
|
|
|
|
src = fetchPypi {
|
|
sha256 = "1gwlgjl70vlv35cgkcw3cg7b5qsmws36hs4mmh0l9msgagjs4fm3";
|
|
inherit pname version;
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ setuptools_scm ];
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/agronholm/cbor2;
|
|
description = "CBOR encoder/decoder";
|
|
license = licenses.mit;
|
|
};
|
|
}
|