fix: corrected build

This commit is contained in:
D. Moonfire 2023-11-05 11:24:01 -06:00
parent 5902116fa6
commit 7c77eda853

View file

@ -3,20 +3,24 @@
inputs = {
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.0.tar.gz";
flake-utils.url =
"https://flakehub.com/f/numtide/flake-utils/0.1.85.tar.gz";
flake-utils.url = "https://flakehub.com/f/numtide/flake-utils/0.1.85.tar.gz";
};
outputs = { self, nixpkgs, flake-utils, ... }:
let pythonVersion = "python39";
in flake-utils.lib.eachDefaultSystem (system:
let
outputs = {
self,
nixpkgs,
flake-utils,
...
}: let
pythonVersion = "python39";
in
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
lib = pkgs.lib;
python3Packages = pkgs.python3Packages;
fetchPypi = pkgs.fetchPypi;
src = pkgs.fetchFromGitHub {
pkgSrc = pkgs.fetchFromGitHub {
owner = "webcomics";
repo = "dosage";
rev = "9163317abadcef0a562afaaf422828b56d006e20";
@ -34,6 +38,7 @@
responses
];
src = pkgSrc;
requirements = "${src}/setup/requirements.txt";
nativeBuildInputs = with python3Packages; [setuptools-scm];