trying to package chained-recurrence
This commit is contained in:
parent
4b2b110630
commit
5c28114a6f
3 changed files with 20 additions and 16 deletions
19
packages/chained-recurrence.nix
Normal file
19
packages/chained-recurrence.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue