segno: remove package

It is also available on nixpkgs now.
This commit is contained in:
Gabriel Arazas 2023-07-12 15:13:54 +08:00
parent cdc17c28ee
commit 73675e518a
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 0 additions and 24 deletions

View File

@ -62,7 +62,6 @@ let
swh = callPackage ./software-heritage { python3Packages = python310Packages; };
speki = callPackage ./speki { };
tic-80 = callPackage ./tic-80 { };
segno = callPackage ./segno.nix { };
smile = callPackage ./smile { };
vpaint = libsForQt5.callPackage ./vpaint.nix { };
vgc = qt6Packages.callPackage ./vgc { };

View File

@ -1,23 +0,0 @@
{ lib, python3, fetchFromGitHub }:
with python3.pkgs;
buildPythonPackage rec {
pname = "segno";
version = "1.4.1";
src = fetchFromGitHub {
owner = "heuer";
repo = pname;
rev = version;
sha256 = "sha256-o83HmB4vGDP0P2Ep1eyO5QX8ihnW497ufRxiEEaG+hE=";
};
# TODO: Package the Python package for testing.
doCheck = false;
meta = with lib; {
description = "Encode QR codes without dependencies (except Python).";
homepage = "https://github.com/heuer/segno";
license = licenses.bsd3;
};
}