mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-25 23:51:07 +00:00
21 lines
444 B
Nix
21 lines
444 B
Nix
{ lib, buildPythonPackage, fetchPypi }:
|
|
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;
|
|
};
|
|
}
|