This commit is contained in:
Matt Nish-Lapidus 2025-03-27 22:33:34 -04:00
parent 5c28114a6f
commit a5bd05e0aa
3 changed files with 4 additions and 23 deletions

View file

@ -1,19 +0,0 @@
{ config, lib, pkgs, ... }:
let
pname = "chained-recurrence";
version = "0.0.13";
in
pkgs.python312Packages.buildPythonPackage {
inherit pname version;
pyproject = true;
src = pkgs.fetchPypi {
inherit pname version;
sha256 = "sha256-PMxZFB82XkvHMCLVvbiW0L8AVQFiYpzXTFpxIUyDqIY=";
};
nativeBuildInputs = [
pkgs.python3Packages.setuptools
];
}

View file

@ -12,7 +12,7 @@ stdenv.mkDerivation {
nativeBuildInputs = [ makeWrapper unzip ];
propagatedBuildInputs = [
(pkgs.python311.withPackages (pythonPackages: with pythonPackages; [
(pkgs.python3.withPackages (pythonPackages: with pythonPackages; [
mido
python-rtmidi
]))