mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
d985d10622
Co-authored-by: Jean-Paul Calderone <exarkun@twistedmatrix.com>
21 lines
460 B
Nix
21 lines
460 B
Nix
{ lib, buildPythonPackage, fetchPypi, setuptools_scm }:
|
|
buildPythonPackage rec {
|
|
pname = "cbor2";
|
|
version = "5.2.0";
|
|
|
|
src = fetchPypi {
|
|
sha256 = "1gwlgjl70vlv35cgkcw3cg7b5qsmws36hs4mmh0l9msgagjs4fm3";
|
|
inherit pname version;
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ setuptools_scm ];
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/agronholm/cbor2;
|
|
description = "CBOR encoder/decoder";
|
|
license = licenses.mit;
|
|
};
|
|
}
|