Files
nur-packages/pkgs/development/python-modules/py-sonic/default.nix
xeals 66fe96f8ce
Some checks failed
CI / checks (nur) (push) Successful in 3m40s
CI / build-and-update (xeals, xeals) (push) Successful in 23m2s
Update flake inputs / update-flake (push) Failing after 2m43s
py-sonic: force setuptools build
2025-07-19 16:26:07 +10:00

25 lines
495 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "py-sonic";
version = "0.7.7";
src = fetchPypi {
inherit pname version;
sha256 = "0wh2phg8h02a6vlpqd0widd6g8ng142vzmk8hpyx0bnwn2i45sjc";
};
format = "setuptools";
doCheck = false;
meta = with lib; {
homepage = "https://stuffivelearned.org/doku.php?id=programming:python:py-sonic";
license = licenses.gpl3;
description = "A python wrapper library for the Subsonic REST API";
};
}