use standard pypi

This commit is contained in:
Valentin Boettcher 2021-12-07 19:19:40 +01:00
parent 72a1a78048
commit b0124485ad

View file

@ -11,8 +11,6 @@
outputs = { self, nixpkgs, flake-utils, mach-nix, fcSpline }:
let
python = "python39";
pypiDataRev = "master";
pypiDataSha256 = "041rpjrwwa43hap167jy8blnxvpvbfil0ail4y4mar1q5f0q57xx";
devShell = pkgs:
pkgs.mkShell {
buildInputs = [
@ -25,7 +23,7 @@
in flake-utils.lib.eachSystem ["x86_64-linux"] (system:
let
pkgs = nixpkgs.legacyPackages.${system};
mach-nix-wrapper = import mach-nix { inherit pkgs python pypiDataRev pypiDataSha256; };
mach-nix-wrapper = import mach-nix { inherit pkgs python; };
fcSplinePkg = fcSpline.defaultPackage.${system};