trying to package chained-recurrence

This commit is contained in:
Matt Nish-Lapidus 2025-03-27 22:13:49 -04:00
parent 4b2b110630
commit 5c28114a6f
3 changed files with 20 additions and 16 deletions

View file

@ -0,0 +1,19 @@
{ 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
];
}